Exemplo n.º 1
0
    def GET(self):
        '''Returns a string describing the test queries used in testing a data model'''

        # Get the input data from the HTTP header
        model = web.input().model

        # Return description
        return describeQueries(model)
Exemplo n.º 2
0
    def GET(self):
        '''Returns a string describing the test queries used in testing a data model'''
        
        # Get the input data from the HTTP header
        model = web.input().model

        # Return description
        return describeQueries(model)
Exemplo n.º 3
0
 def GET(self):
     '''Returns a string describing the queries used in testing a DM'''
     model = web.input().model
     return describeQueries(model)
Exemplo n.º 4
0
 def GET(self):
     '''Returns a string describing the queries used in testing a DM'''
     model = web.input().model
     return describeQueries(model)