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 5a0828d commit 65e03e6Copy full SHA for 65e03e6
project/members/tests/test_application.py
@@ -17,3 +17,5 @@ def test_application_approve():
17
def test_get_application_form(client):
18
response = client.get(reverse('members-apply'))
19
assert b'Apply for membership' in response.content
20
+
21
+# TODO: Figure out a good way to submitting the form
project/members/tests/test_restapi.py
@@ -14,3 +14,5 @@ def test_get_member_list_json(admin_client):
14
)
15
result = json.loads(response.content.decode('utf-8'))
16
assert result['count'] > 0
+# TODO: Figure out a good way to test the HTML API browser
0 commit comments