Skip to content

Commit e545f5e

Browse files
committed
rename test member functions so that the tests actually run them. Consider cherrypicking this commit.
- Legacy-Id: 10033
1 parent c01934b commit e545f5e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

ietf/doc/tests_draft.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -963,7 +963,7 @@ def setUp(self):
963963

964964

965965
class SubmitToIesgTests(TestCase):
966-
def verify_permissions(self):
966+
def test_verify_permissions(self):
967967

968968
def verify_fail(username):
969969
if username:
@@ -986,7 +986,7 @@ def verify_can_see(username):
986986
for username in ['marschairman','secretary','ad']:
987987
verify_can_see(username)
988988

989-
def cancel_submission(self):
989+
def test_cancel_submission(self):
990990
url = urlreverse('doc_to_iesg', kwargs=dict(name=self.docname))
991991
self.client.login(username="marschairman", password="marschairman+password")
992992

@@ -996,7 +996,7 @@ def cancel_submission(self):
996996
doc = Document.objects.get(pk=self.doc.pk)
997997
self.assertTrue(doc.get_state('draft-iesg')==None)
998998

999-
def confirm_submission(self):
999+
def test_confirm_submission(self):
10001000
url = urlreverse('doc_to_iesg', kwargs=dict(name=self.docname))
10011001
self.client.login(username="marschairman", password="marschairman+password")
10021002

0 commit comments

Comments
 (0)