Ejemplo n.º 1
0
 def test_create_topic_with_tag_link_profile(self):
     self.topic_page = create_topic_with_tag(self, Panel.LINK_PROFILE.text)
     self.assertIn(Panel.LINK_PROFILE.html, self.topic_page.get_html())
Ejemplo n.º 2
0
 def test_create_topic_with_tag_link(self):
     self.topic_page = create_topic_with_tag(self, Panel.LINK.text)
     self.assertIn(Panel.LINK.html, self.topic_page.get_html())
Ejemplo n.º 3
0
 def test_create_topic_with_tag_num_list(self):
     self.topic_page = create_topic_with_tag(self, Panel.NUM_LIST.text)
     self.assertIn(Panel.NUM_LIST.html, self.topic_page.get_html())
Ejemplo n.º 4
0
 def test_create_topic_with_tag_image(self):
     self.topic_page = create_topic_with_tag(self, Panel.IMAGE.text)
     self.assertIn(Panel.IMAGE.html, self.topic_page.get_html())
Ejemplo n.º 5
0
 def test_create_topic_with_tag_quotes(self):
     self.topic_page = create_topic_with_tag(self, Panel.QUOTES.text)
     self.assertIn(Panel.QUOTES.html, self.topic_page.get_html())