Exemplo n.º 1
0
 def test_querystring(self):
     path = '/one/two?something'
     eq_(next_url(_make_request(path))['next_url'], path)
Exemplo n.º 2
0
 def test_basic(self):
     path = '/one/two'
     eq_(next_url(_make_request(path))['next_url'], path)
Exemplo n.º 3
0
 def test_querystring(self):
     path = '/one/two?something'
     req = _make_request(path)
     eq_(next_url(_make_request(path))['next_url'], path)
Exemplo n.º 4
0
 def test_basic(self):
     path = '/one/two'
     eq_(next_url(_make_request(path))['next_url'], path)
Exemplo n.º 5
0
 def test_querystring(self):
     path = "/one/two?something"
     eq_(next_url(_make_request(path))["next_url"], path)
Exemplo n.º 6
0
 def test_basic(self):
     path = "/one/two"
     eq_(next_url(_make_request(path))["next_url"], path)