From 51ebadb34d22d25c10c5e54d4dada46b88c3829b Mon Sep 17 00:00:00 2001 From: Donald Stufft Date: Thu, 11 Jun 2015 09:23:01 -0400 Subject: Migrate to using CFFI 1.0 * Move everything under src/ to ensure we test against the installed library. * Create a build_bcrypt.py script which will build _bcrypt.so. * Refactor to utilize the new _bcrypt.so instead of implicit compile. --- tests/test_bcrypt.py | 5 ----- 1 file changed, 5 deletions(-) (limited to 'tests/test_bcrypt.py') diff --git a/tests/test_bcrypt.py b/tests/test_bcrypt.py index 5793811..c91a62e 100644 --- a/tests/test_bcrypt.py +++ b/tests/test_bcrypt.py @@ -7,11 +7,6 @@ import six import bcrypt -def test_raise_implicit_compile(): - with pytest.raises(RuntimeError): - bcrypt._compile_module() - - def test_gensalt_basic(monkeypatch): monkeypatch.setattr(os, "urandom", lambda n: b"0000000000000000") assert bcrypt.gensalt() == b"$2a$12$KB.uKB.uKB.uKB.uKB.uK." -- cgit v1.2.1