diff options
author | emkael <emkael@tlen.pl> | 2019-01-18 01:15:37 +0100 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2019-01-18 01:15:37 +0100 |
commit | 033cd8f39d3e88283e4eb626f35f0e97c16e9e0e (patch) | |
tree | 49894d0624e8f25c0e2201954f413020c98cafdf /test/apitest/apitest.py | |
parent | 8c92dbcc1fa093c3f28df21ecc13b42b4e701be3 (diff) |
Test suite for API <-> pzbs.pl comparison
Diffstat (limited to 'test/apitest/apitest.py')
-rw-r--r-- | test/apitest/apitest.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/apitest/apitest.py b/test/apitest/apitest.py new file mode 100644 index 0000000..e75890d --- /dev/null +++ b/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 |