aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLorenz Diener <[email protected]>2018-06-05 22:10:31 +0200
committerLorenz Diener <[email protected]>2018-06-05 22:10:31 +0200
commit18c6b3b90ff8bd607df18af86d092ac1205ffbf7 (patch)
tree203729696d2639d5bf221168ad6c76a150130ab0 /tests/test_constructor.py
parent36194fd60c8e5c6d30134134e32dd24981aee324 (diff)
downloadmastodon.py-18c6b3b90ff8bd607df18af86d092ac1205ffbf7.tar.gz
New casettes, small fixes
Diffstat (limited to 'tests/test_constructor.py')
-rw-r--r--tests/test_constructor.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/test_constructor.py b/tests/test_constructor.py
index 1512939..ebc9b85 100644
--- a/tests/test_constructor.py
+++ b/tests/test_constructor.py
@@ -34,9 +34,7 @@ def test_constructor_missing_client_secret():
34@pytest.mark.vcr() 34@pytest.mark.vcr()
35def test_verify_version(api): 35def test_verify_version(api):
36 assert api.verify_minimum_version("2.3.3") == True 36 assert api.verify_minimum_version("2.3.3") == True
37 assert api.verify_minimum_version("2.3.4") == False 37 assert api.verify_minimum_version("9999.9999.9999") == False
38 assert api.verify_minimum_version("2.4.3") == False
39 assert api.verify_minimum_version("3.3.3") == False
40 assert api.verify_minimum_version("1.0.0") == True 38 assert api.verify_minimum_version("1.0.0") == True
41 39
42def test_supported_version(api): 40def test_supported_version(api):
Powered by cgit v1.2.3 (git 2.41.0)