Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c6c862c

Browse files
jrzerrlbalmaceda
authored andcommitted
Update test_auth0.py
Added management test for Actions
1 parent fb80d58 commit c6c862c

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

auth0/v3/test/management/test_auth0.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import unittest
22

33
from ...management.auth0 import Auth0
4+
from ...management.actions import Actions
45
from ...management.blacklists import Blacklists
56
from ...management.client_grants import ClientGrants
67
from ...management.clients import Clients
@@ -35,6 +36,9 @@ def setUp(self):
3536
self.token = "a-token"
3637
self.a0 = Auth0(self.domain, self.token)
3738

39+
def test_blacklists(self):
40+
self.assertIsInstance(self.a0.actions, Actions)
41+
3842
def test_blacklists(self):
3943
self.assertIsInstance(self.a0.blacklists, Blacklists)
4044

0 commit comments

Comments
 (0)