Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb80d58 commit c6c862cCopy full SHA for c6c862c
auth0/v3/test/management/test_auth0.py
@@ -1,6 +1,7 @@
1
import unittest
2
3
from ...management.auth0 import Auth0
4
+from ...management.actions import Actions
5
from ...management.blacklists import Blacklists
6
from ...management.client_grants import ClientGrants
7
from ...management.clients import Clients
@@ -35,6 +36,9 @@ def setUp(self):
35
36
self.token = "a-token"
37
self.a0 = Auth0(self.domain, self.token)
38
39
+ def test_blacklists(self):
40
+ self.assertIsInstance(self.a0.actions, Actions)
41
+
42
def test_blacklists(self):
43
self.assertIsInstance(self.a0.blacklists, Blacklists)
44
0 commit comments