def test_new_post_with_category(self): c = Category(name='Python') c.put() p = Post(title="Primo Post", category=c) p.put() return self.assertEqual(p.category.name, 'Python')
def test_new_post(self): p = Post(title="Primo post") p.put() return self.assertEqual(p.title, "Primo post")