Example #1
0
    def test_tojson_dict(self):
        test_json_string = to_json({"aa": 12, "bb": 33})
        is_true_json = False
        if test_json_string == "{\"aa\": 12, \"bb\": 33}" or \
           test_json_string == "{\"bb\": 33, \"aa\": 12}":
            is_true_json = True

        self.assertEqual(is_true_json, True)
Example #2
0
 def test_tojson_error(self):
     test_string = "aaaslkj"
     test_json_string = to_json(test_string, False, False, False)
     self.assertEqual(test_json_string, "{\"aaaslkj\"}")