Skip to content

Commit

Permalink
Merge affd65c into ed68b9a
Browse files Browse the repository at this point in the history
  • Loading branch information
fanglinfang committed Mar 12, 2019
2 parents ed68b9a + affd65c commit bd1c9a3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
5 changes: 5 additions & 0 deletions restclients_core/tests/dao_implementation/test_mock.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,11 @@ def test_binary_data(self):
response = TDAO().getURL('/image.jpg', {})
self.assertEquals(response.status, 200)

def test_params_none(self):
response = TDAO().getURL('/search?'
'first=a&second=b.POST')
self.assertEquals(response.status, 200)

def test_out_of_order_params(self):
response = TDAO().getURL('/search?'
'first=a&second=b&third=c&fourth=d')
Expand Down

0 comments on commit bd1c9a3

Please sign in to comment.