diff options
author | Donald Stufft <donald@stufft.io> | 2013-08-07 12:50:44 -0700 |
---|---|---|
committer | Donald Stufft <donald@stufft.io> | 2013-08-07 12:50:44 -0700 |
commit | 39ffd9095a2735665e2bf1c62799849c7ac5a1bc (patch) | |
tree | ef296b8630199b8e5d25d624597c146b4e233768 /tests/test_c.py | |
parent | 096b000c244d592def9bcd826528de7284d4e851 (diff) | |
parent | a233dcc6f32eaaef10750cf644c68363d08395f1 (diff) | |
download | cryptography-39ffd9095a2735665e2bf1c62799849c7ac5a1bc.tar.gz cryptography-39ffd9095a2735665e2bf1c62799849c7ac5a1bc.tar.bz2 cryptography-39ffd9095a2735665e2bf1c62799849c7ac5a1bc.zip |
Merge pull request #1 from alex/initial-repo
Basic Project Files and Skeleton
Diffstat (limited to 'tests/test_c.py')
-rw-r--r-- | tests/test_c.py | 6 |
1 files changed, 6 insertions, 0 deletions
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 |