示例#1
0
文件: test.py 项目: siruguri/three
 def test_keyword_arguments_become_parameters(self):
     t = Three("api.city.gov")
     t.services("123", foo="bar")
     params = {"foo": "bar"}
     expected = "https://api.city.gov/services/123.json"
     req.get.assert_called_with(expected, params=params)
示例#2
0
文件: test.py 项目: siruguri/three
 def test_empty_services_call(self):
     t = Three("api.city.gov")
     t.services()
     expected = "https://api.city.gov/services.json"
     req.get.assert_called_with(expected, params={})
示例#3
0
文件: test.py 项目: siruguri/three
 def test_specific_service_code(self):
     t = Three("api.city.gov")
     t.services("123")
     expected = "https://api.city.gov/services/123.json"
     req.get.assert_called_with(expected, params={})
示例#4
0
文件: test.py 项目: isabella232/three
 def test_specific_service_code(self):
     t = Three('api.city.gov')
     t.services('123')
     expected = 'https://api.city.gov/services/123.json'
     t.session.get.assert_called_with(expected, params={})
示例#5
0
文件: test.py 项目: isabella232/three
 def test_keyword_arguments_become_parameters(self):
     t = Three('api.city.gov')
     t.services('123', foo='bar')
     params = {'foo': 'bar'}
     expected = 'https://api.city.gov/services/123.json'
     t.session.get.assert_called_with(expected, params=params)
示例#6
0
文件: test.py 项目: isabella232/three
 def test_empty_services_call(self):
     t = Three('api.city.gov')
     t.services()
     expected = 'https://api.city.gov/services.json'
     t.session.get.assert_called_with(expected, params={})
示例#7
0
文件: test.py 项目: SeeClickFix/three
 def test_keyword_arguments_become_parameters(self):
     t = Three('api.city.gov')
     t.services('123', foo='bar')
     params = {'foo': 'bar'}
     expected = 'https://api.city.gov/services/123.json'
     t.session.get.assert_called_with(expected, params=params)
示例#8
0
文件: test.py 项目: SeeClickFix/three
 def test_specific_service_code(self):
     t = Three('api.city.gov')
     t.services('123')
     expected = 'https://api.city.gov/services/123.json'
     t.session.get.assert_called_with(expected, params={})
示例#9
0
文件: test.py 项目: SeeClickFix/three
 def test_empty_services_call(self):
     t = Three('api.city.gov')
     t.services()
     expected = 'https://api.city.gov/services.json'
     t.session.get.assert_called_with(expected, params={})
def getOpen311Services():
    t = Three(open311URL, ssl_version=ssl.PROTOCOL_TLSv1)
    services = t.services()
    return services