This commit is contained in:
toasted-nutbread 2022-05-20 17:19:29 -04:00
parent 0d0962319a
commit e842dc78e0

View File

@ -21,6 +21,17 @@ def test_reloadCollection(setup):
ac.reloadCollection() ac.reloadCollection()
def test_apiReflect(setup):
result = ac.apiReflect(
scopes=["actions", "invalidType"],
actions=["apiReflect", "invalidMethod"]
)
assert result == {
"scopes": ["actions"],
"actions": ["apiReflect"]
}
class TestProfiles: class TestProfiles:
def test_getProfiles(self, session_with_profile_loaded): def test_getProfiles(self, session_with_profile_loaded):
result = ac.getProfiles() result = ac.getProfiles()