aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorCody Logan <clpo13@gmail.com>2020-01-08 10:04:55 -0800
committerCody Logan <clpo13@gmail.com>2020-01-08 10:04:55 -0800
commit32060abca4e2e9c111d73b23f28f5837da41d7be (patch)
treecc8498909e20454c305d8b255262fa522d1c2d2d /tests
parentf389e7c377caf91959a2bd4adde744eda9aeac85 (diff)
downloadalphanum-32060abca4e2e9c111d73b23f28f5837da41d7be.tar.gz
alphanum-32060abca4e2e9c111d73b23f28f5837da41d7be.zip
Add support for Python 3.5
Diffstat (limited to 'tests')
-rw-r--r--tests/test_alphanum.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/test_alphanum.py b/tests/test_alphanum.py
index d567bdb..fc9bc41 100644
--- a/tests/test_alphanum.py
+++ b/tests/test_alphanum.py
@@ -15,19 +15,3 @@ def test_subsequent_strings_differ():
foo = alphanum.generate(10)
bar = alphanum.generate(10)
assert foo != bar
-
-
-def test_secure_no_string_length():
- foo = alphanum.generate_s()
- assert len(foo) == 1
-
-
-def test_secure_with_string_length():
- foo = alphanum.generate_s(10)
- assert len(foo) == 10
-
-
-def test_secure_subsequent_strings_differ():
- foo = alphanum.generate_s(10)
- bar = alphanum.generate_s(10)
- assert foo != bar