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 3f81b9a commit d437694Copy full SHA for d437694
tests/auth/test_user.py
@@ -1,14 +1,16 @@
1
import unittest
2
+
3
from inspect import isabstract
4
5
from a2a.auth.user import UnauthenticatedUser, User
6
7
8
class TestUser(unittest.TestCase):
9
def test_is_abstract(self):
10
assert isabstract(User)
11
-class TestUnauthenticatedUser(unittest.TestCase):
12
13
+class TestUnauthenticatedUser(unittest.TestCase):
14
def test_is_user_subclass(self):
15
assert issubclass(UnauthenticatedUser, User)
16
0 commit comments