Browse Source

AGPL 3.0 headers

pull/4/head
heck 5 years ago
parent
commit
a03295b495
  1. 2
      tests/__init__.py
  2. 3
      tests/conftest.py
  3. 3
      tests/constants.py
  4. 6
      tests/model.py
  5. 3
      tests/test_basic.py
  6. 3
      tests/test_identity.py
  7. 3
      tests/test_message.py
  8. 3
      tests/test_pep.py
  9. 6
      tests/utils.py
  10. 2
      utils/pEp

2
tests/__init__.py

@ -1 +1,3 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# This file is under GNU Affero General Public License 3.0
# see LICENSE.txt

3
tests/conftest.py

@ -1,4 +1,7 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# This file is under GNU Affero General Public License 3.0
# see LICENSE.txt
"""pytest configuration for the unit tests.""" """pytest configuration for the unit tests."""
from .model import * from .model import *

3
tests/constants.py

@ -1,4 +1,7 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# This file is under GNU Affero General Public License 3.0
# see LICENSE.txt
"""Constants for unit tests.""" """Constants for unit tests."""
DATADIR = "data" DATADIR = "data"

6
tests/model.py

@ -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 import pytest

3
tests/test_basic.py

@ -1,5 +1,6 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# This file is under GNU Affero General Public License 3.0
# see LICENSE.txt
# from . import constants # from . import constants
import pytest import pytest

3
tests/test_identity.py

@ -1,4 +1,7 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# This file is under GNU Affero General Public License 3.0
# see LICENSE.txt
"""Identity unit tests.""" """Identity unit tests."""
import pytest import pytest

3
tests/test_message.py

@ -1,4 +1,7 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# This file is under GNU Affero General Public License 3.0
# see LICENSE.txt
"""Message unit tests.""" """Message unit tests."""
from . import constants from . import constants

3
tests/test_pep.py

@ -1,4 +1,7 @@
# -*- coding: utf-8 -*- # -*- 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.""" """Unit test for pEp package, not for subpackages or modules."""

6
tests/utils.py

@ -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 import pathlib

2
utils/pEp

@ -1,5 +1,7 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# This file is under GNU Affero General Public License 3.0
# see LICENSE.txt
""" """

Loading…
Cancel
Save