X-Git-Url: https://wannabe.guru.org/gitweb/?a=blobdiff_plain;f=tests%2Fdecorator_utils_test.py;h=68f1389cfa4895545cf0b7c7d25346807ae8c905;hb=532df2c5b57c7517dfb3dddd8c1358fbadf8baf3;hp=195dd636a6a2238ad5df9e23d6caf7f841a0353d;hpb=c46018e2b1ddc78f9df557c3fb24d2c2c849f054;p=python_utils.git diff --git a/tests/decorator_utils_test.py b/tests/decorator_utils_test.py index 195dd63..68f1389 100755 --- a/tests/decorator_utils_test.py +++ b/tests/decorator_utils_test.py @@ -1,18 +1,19 @@ #!/usr/bin/env python3 +# © Copyright 2021-2022, Scott Gasch + +"""decorator_utils unittest such as it is.""" + import unittest import decorator_utils as du - import unittest_utils as uu class TestDecorators(unittest.TestCase): - def test_singleton(self): - @du.singleton - class FooBar(): + class FooBar: pass x = FooBar()