diff options
Diffstat (limited to 'migration-test/apitest/apitest.py')
-rw-r--r-- | migration-test/apitest/apitest.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/migration-test/apitest/apitest.py b/migration-test/apitest/apitest.py new file mode 100644 index 0000000..e75890d --- /dev/null +++ b/migration-test/apitest/apitest.py @@ -0,0 +1,14 @@ +class ApiTest(object): + ranks = {} + tourtypes = {'i': 1, 'p': 2, 't': 4} + def get_url(self): + pass + def get_method(self): + pass + def get_request(self, + tour_rank, tour_type, tour_boards, + cont_count, cont_rank, + override=None): + pass + def parse_response(self, response_body): + pass |