RitualBelt now has an API.
This commit is contained in:
parent
31b35b43eb
commit
a70f11646a
3 changed files with 30 additions and 3 deletions
|
@ -76,11 +76,17 @@ TEST_CASE("the ritual belt works", "[rituals-belt]") {
|
|||
|
||||
{
|
||||
auto action = re.finalize(plan);
|
||||
the_belt.equipped.push_back(action);
|
||||
the_belt.equip(0, action);
|
||||
REQUIRE(the_belt.has(0));
|
||||
}
|
||||
|
||||
{
|
||||
auto action = the_belt.equipped.at(0);
|
||||
auto action = the_belt.get(0);
|
||||
action.dump();
|
||||
}
|
||||
|
||||
{
|
||||
the_belt.unequip(0);
|
||||
REQUIRE(!the_belt.has(0));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue