Tests list_posts
(self)
| 7 | """ Tests handler methods """ |
| 8 | |
| 9 | def test_list_posts(self): |
| 10 | """ Tests list_posts """ |
| 11 | res = list_posts(None, None) |
| 12 | self.assertEquals(200, res['statusCode']) |
| 13 | self.assertTrue(len(res['body']) > 0) |
| 14 | |
| 15 | def test_get_post(self): |
| 16 | """ Tests get_post """ |
nothing calls this directly
no test coverage detected