This website works better with JavaScript.
Home
Help
Register
Sign In
htgoebel
/
pEpPythonAdapter
forked from
pEp.foundation/pEpPythonAdapter
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
AGPL 3.0 headers
cython
heck
2 years ago
parent
9a3fb3918d
commit
a03295b495
10 changed files
with
31 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-0
tests/__init__.py
+3
-0
tests/conftest.py
+3
-0
tests/constants.py
+5
-1
tests/model.py
+2
-1
tests/test_basic.py
+3
-0
tests/test_identity.py
+3
-0
tests/test_message.py
+3
-0
tests/test_pep.py
+5
-1
tests/utils.py
+2
-0
utils/pEp
+ 2
- 0
tests/__init__.py
View File
@ -1 +1,3 @@
# -*- coding: utf-8 -*-
# This file is under GNU Affero General Public License 3.0
# see LICENSE.txt
+ 3
- 0
tests/conftest.py
View File
@ -1,4 +1,7 @@
# -*- coding: utf-8 -*-
# This file is under GNU Affero General Public License 3.0
# see LICENSE.txt
"""
pytest configuration for the unit tests.
"""
from
.model
import
*
+ 3
- 0
tests/constants.py
View File
@ -1,4 +1,7 @@
# -*- coding: utf-8 -*-
# This file is under GNU Affero General Public License 3.0
# see LICENSE.txt
"""
Constants for unit tests.
"""
DATADIR
=
"
data
"
+ 5
- 1
tests/model.py
View File
@ -1,4 +1,8 @@
from
.
import
utils
# -*- coding: utf-8 -*-
# This file is under GNU Affero General Public License 3.0
# see LICENSE.txt
# from . import utils
import
pytest
+ 2
- 1
tests/test_basic.py
View File
@ -1,5 +1,6 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# This file is under GNU Affero General Public License 3.0
# see LICENSE.txt
# from . import constants
import
pytest
+ 3
- 0
tests/test_identity.py
View File
@ -1,4 +1,7 @@
# -*- coding: utf-8 -*-
# This file is under GNU Affero General Public License 3.0
# see LICENSE.txt
"""
Identity unit tests.
"""
import
pytest
+ 3
- 0
tests/test_message.py
View File
@ -1,4 +1,7 @@
# -*- coding: utf-8 -*-
# This file is under GNU Affero General Public License 3.0
# see LICENSE.txt
"""
Message unit tests.
"""
from
.
import
constants
+ 3
- 0
tests/test_pep.py
View File
@ -1,4 +1,7 @@
# -*- coding: utf-8 -*-
# This file is under GNU Affero General Public License 3.0
# see LICENSE.txt
"""
Unit test for pEp package, not for subpackages or modules.
"""
+ 5
- 1
tests/utils.py
View File
@ -1,4 +1,8 @@
from
.
import
constants
# -*- coding: utf-8 -*-
# This file is under GNU Affero General Public License 3.0
# see LICENSE.txt
# from . import constants
import
pathlib
+ 2
- 0
utils/pEp
View File
@ -1,5 +1,7 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# This file is under GNU Affero General Public License 3.0
# see LICENSE.txt
"""
Write
Preview
Loading…
Cancel
Save