コード例 #1
0
ファイル: test_reviews.py プロジェクト: GFUCABAM/statler
    def testGetApiFields(self):
        review = Review()
        review.play = Play()
        review.timestamp = datetime.today()
        review.text = "foo"

        apiDict = review.getApiFields()

        self.assertEqual(apiDict, {"text": "foo", "timestamp": datetime.today().isoformat()})