Skip to content
Snippets Groups Projects
Commit b84006a0 authored by Erin Mullaney's avatar Erin Mullaney
Browse files

addl test for reviewer dashboard

parent b0db4161
No related branches found
No related tags found
No related merge requests found
...@@ -87,3 +87,10 @@ class TestReviewerDashboard(BaseViewTestCase): ...@@ -87,3 +87,10 @@ class TestReviewerDashboard(BaseViewTestCase):
response = self.get_page() response = self.get_page()
self.assertNotContains(response, submission.title) self.assertNotContains(response, submission.title)
self.assertEquals(response.context['in_review_count'], 0) self.assertEquals(response.context['in_review_count'], 0)
def test_no_submissions_in_external_review_status(self):
submission = ApplicationSubmissionFactory(status='concept_review_discussion', workflow_stages=2)
response = self.get_page()
self.assertNotContains(response, submission.title)
self.assertEquals(response.context['in_review_count'], 0)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment