Beispiel #1
0
    def test_to_json(self):
        utils= Utils()
        # create a dummy request structure
        request = DataStructure()
        # This is exactly what the data from the browser looks like:
        request.data = b'{"tableName":"BAInfo","attrName":" StartDate ","attrValue":"","linkName":"undefined","baseTab":false,"showAttrs":""}'
#         dictionaryStructure = AppServer.json_decode(request)
        dictionaryStructure = utils.json_decode(request)
        self.assertEqual("BAInfo", dictionaryStructure['tableName'])