コード例 #1
0
ファイル: test.py プロジェクト: pombredanne/json_delta
 def runTest(self):
     self.assertEquals(
         json_delta._util.decode_json(self.target),
         json_delta.load_and_patch(self.case, self.diff)
     )
コード例 #2
0
ファイル: test.py プロジェクト: NunaHealth/json_delta
 def runTest(self):
     self.assertEquals(
         json.loads(self.target),
         json_delta.load_and_patch(self.case, self.diff)
     )