Exemplo n.º 1
0
 def test_get_table(self, requests):
     requests.get = Mock(
         return_value=self.get_mock_response({})
     )
     client = SkyClient()
     client.get_table('users')
     requests.get.assert_called_once_with(
         'http://127.0.0.1:8585/tables/users',
         headers={'content-type': 'application/json'},
         data=None
     )