Example #1
0
    def test_string_representation(self):
        # Given: a title
        expected = "A Category"

        # When: Category is called
        c1 = Category(name=expected)
        actual = str(c1)

        # Then: the class __str__ should be the title
        self.assertEqual(expected, actual)
Example #2
0
    def test_string_representation(self):
        expected = "A Category"
        c1 = Category(name=expected)
        actual = str(c1)
        self.assertEqual(expected, actual)


# class FrontEndTestCase(TestCase):
#     """test views provided in the front-end"""
#     fixtures = ['blogging_test_fixture.json', ]
#
#     def setUp(self):
#         self.now = datetime.datetime.utcnow().replace(tzinfo=utc)
#         self.timedelta = datetime.timedelta(15)
#         author = User.objects.get(pk=1)
#         for count in range(1, 11):
#             post = Post(title="Post %d Title" % count,
#                         text="foo",
#                         author=author)
#             if count < 6:
#                 # publish the first five posts
#                 pubdate = self.now - self.timedelta * count
#                 post.published_date = pubdate
#             post.save()
#
#     def test_list_only_published(self):
#         resp = self.client.get('/')
#         # the content of the rendered response is always a bytestring
#         resp_text = resp.content.decode(resp.charset)
#         self.assertTrue("Recent Posts" in resp_text)
#         for count in range(1, 11):
#             title = "Post %d Title" % count
#             if count < 6:
#                 self.assertContains(resp, title, count=1)
#             else:
#                 self.assertNotContains(resp, title)
Example #3
0
 def test_string_representation(self):
     expected = "A Category"
     c1 = Category(name=expected)
     actual = str(c1)
     self.assertEqual(expected, actual)
Example #4
0
 def test_string_representation(self):
     expected = "A Category"
     category = Category(name=expected)
     self.assertEqual(expected, str(category))