From 32060abca4e2e9c111d73b23f28f5837da41d7be Mon Sep 17 00:00:00 2001 From: Cody Logan Date: Wed, 8 Jan 2020 10:04:55 -0800 Subject: Add support for Python 3.5 --- tests/test_alphanum.py | 16 ---------------- 1 file changed, 16 deletions(-) (limited to 'tests') 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 -- cgit v1.2.3