def test_well(self):
     """Well content correctly displays on a Landing Page"""
     landing_page = LandingPage(
         title='Landing Page',
         slug='landing',
     )
     landing_page.content = StreamValue(landing_page.content.stream_block,
                                        [atomic.well], True)
     publish_page(child=landing_page)
     response = django_client.get('/landing/')
     self.assertContains(response, 'this is well content')
 def test_info_unit_group(self):
     """Info Unit Group correctly displays on a Landing Page"""
     landing_page = LandingPage(
         title='Landing Page',
         slug='landing',
     )
     landing_page.content = StreamValue(landing_page.content.stream_block,
                                        [atomic.info_unit_group], True)
     publish_page(child=landing_page)
     response = django_client.get('/landing/')
     self.assertContains(response, 'Info Unit Group')