예제 #1
0
 def test_encode_RAISE_when_INPUT_UN_JSONABLE(self):
     with self.assertRaises(TypeError):
         JsonTypeCase.encode(self.wrong_type_input)
예제 #2
0
 def test_encode_RAISE_when_INPUT_UN_JSONABLE(self):
     with self.assertRaises(TypeError):
         JsonTypeCase.encode(self.wrong_type_input)
예제 #3
0
 def test_encode_with_JSONABLE(self):
     assert JsonTypeCase.encode(self.s) == json.dumps(self.s)
예제 #4
0
 def test_encode_with_JSONABLE(self):
     assert JsonTypeCase.encode(self.s) == json.dumps(self.s)