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 7a4bc47 commit 65f1490Copy full SHA for 65f1490
auth0/v3/test/management/test_auth0.py
@@ -10,6 +10,7 @@
10
from ...management.email_templates import EmailTemplates
11
from ...management.grants import Grants
12
from ...management.guardian import Guardian
13
+from ...management.hooks import Hooks
14
from ...management.jobs import Jobs
15
from ...management.logs import Logs
16
from ...management.resource_servers import ResourceServers
@@ -61,6 +62,9 @@ def test_grants(self):
61
62
def test_guardian(self):
63
self.assertIsInstance(self.a0.guardian, Guardian)
64
65
+ def test_hooks(self):
66
+ self.assertIsInstance(self.a0.hooks, Hooks)
67
+
68
def test_jobs(self):
69
self.assertIsInstance(self.a0.jobs, Jobs)
70
0 commit comments