RitualBelt now has an API.

This commit is contained in:
Zed A. Shaw 2025-04-24 03:32:20 -04:00
parent 31b35b43eb
commit a70f11646a
3 changed files with 30 additions and 3 deletions

View file

@ -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));
}
}