コード例 #1
0
ファイル: test_client.py プロジェクト: unit-image/gazu
 def test_create(self):
     with requests_mock.mock() as mock:
         mock.post(client.get_full_url('data/persons'),
                   text='{"id": "person-1", "first_name": "John"}')
         self.assertEquals(client.create('persons', {"first_name": "John"}),
                           {
                               "id": "person-1",
                               "first_name": "John"
                           })
コード例 #2
0
ファイル: test_client.py プロジェクト: cgwire/gazu
 def test_create(self):
     with requests_mock.mock() as mock:
         mock.post(
             raw.get_full_url("data/persons"),
             text=json.dumps({"id": "person-01", "first_name": "John"}),
         )
         self.assertEqual(
             raw.create("persons", {"first_name": "John"}),
             {"id": "person-01", "first_name": "John"},
         )
コード例 #3
0
ファイル: test_client.py プロジェクト: kiru42/gazu
 def test_create(self):
     with requests_mock.mock() as mock:
         mock.post(
             client.get_full_url("data/persons"),
             text='{"id": "person-01", "first_name": "John"}',
         )
         self.assertEqual(
             client.create("persons", {"first_name": "John"}),
             {
                 "id": "person-01",
                 "first_name": "John"
             },
         )