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 3055511 commit 533e23dCopy full SHA for 533e23d
ietf/person/tests.py
@@ -93,6 +93,10 @@ def test_person_profile_details(self):
93
r = self.client.get(url)
94
self.assertContains(r, person.photo_name(), status_code=200)
95
self.assertContains(r, "foo/bar")
96
+ # Assume no previous meetings and no role
97
+ self.assertContains(r, "has not participated at an IETF meeting since")
98
+ self.assertContains(r, "has no active roles as of")
99
+
100
q = PyQuery(r.content)
101
self.assertIn("Photo of %s"%person.name, q("div.bio-text img").attr("alt"))
102
0 commit comments