test_config.py 228 B

1234567891011121314
  1. import unittest
  2. from fenrispunk_tools.config import *
  3. class TestConfig(unittest.TestCase):
  4. def test_stub(self):
  5. print(f"stub for {__name__}")
  6. assert 1 == 1
  7. if __name__ == "__main__":
  8. print(__name__)