aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorCody Logan <clpo13@gmail.com>2020-01-08 10:05:38 -0800
committerCody Logan <clpo13@gmail.com>2020-01-08 10:05:38 -0800
commitf599b85ba5a5fe7123e0d77bf7b9f6c738471bc8 (patch)
treef2c2be4d13df2ade7288dcf687dfb56d8993436e /tests
parent6c1a51693957ed491c16259746dd67c6c7c93f8a (diff)
parent32060abca4e2e9c111d73b23f28f5837da41d7be (diff)
downloadalphanum-f599b85ba5a5fe7123e0d77bf7b9f6c738471bc8.tar.gz
alphanum-f599b85ba5a5fe7123e0d77bf7b9f6c738471bc8.zip
Merge branch 'master' into sphinx-docs
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