Example #1
0
 def test_mounted_base_endpoint(self):
     endpoint = Endpoint(doc, '/hello/')
     self.assertEquals('./hello/?foo=bar', endpoint.get_link_path(
             request_path='/mount/path/',
             params={'foo': 'bar'},
             ))
     self.assertEquals('./hello/', endpoint.get_display_path(
             request_path='/mount/path/',
             ))
Example #2
0
 def test_api_endpoint(self):
     endpoint = Endpoint(doc, '/hello/')
     self.assertEquals(
         './?foo=bar',
         endpoint.get_link_path(
             request_path='/hello/',
             params={'foo': 'bar'},
         ))
     self.assertEquals('./',
                       endpoint.get_display_path(request_path='/hello/', ))