diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-08-07 10:04:32 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-08-07 10:04:32 -0700 |
commit | 370043071890c137ff51b21773fa5b1cb3f31806 (patch) | |
tree | 800567f5b35bc7a350821b1929f29980397d9041 /tests | |
parent | 226b29568cecbe5f8214f608c0b9f901b18586ed (diff) | |
download | cryptography-370043071890c137ff51b21773fa5b1cb3f31806.tar.gz cryptography-370043071890c137ff51b21773fa5b1cb3f31806.tar.bz2 cryptography-370043071890c137ff51b21773fa5b1cb3f31806.zip |
Less code, more tests.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/__init__.py | 0 | ||||
-rw-r--r-- | tests/test_c.py | 6 |
2 files changed, 6 insertions, 0 deletions
diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/tests/__init__.py diff --git a/tests/test_c.py b/tests/test_c.py new file mode 100644 index 00000000..c50968e2 --- /dev/null +++ b/tests/test_c.py @@ -0,0 +1,6 @@ +from cryptography.c import api + + +class TestC(object): + def test_api_exists(self): + assert api |