diff options
author | Paul Harrison <paul@harrison.sh> | 2022-12-15 15:59:38 +0000 |
---|---|---|
committer | Paul Harrison <paul@harrison.sh> | 2022-12-15 16:02:01 +0000 |
commit | 3899da2f5270d61fa86b090e35f92323c82a5161 (patch) | |
tree | 71199b3baf30b41c2c9eb58b43b277933d63956e /tests |
chore: Initial project setup
Diffstat (limited to 'tests')
-rw-r--r-- | tests/__init__.py | 0 | ||||
-rw-r--r-- | tests/test_poker.py | 4 |
2 files changed, 4 insertions, 0 deletions
diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/tests/__init__.py diff --git a/tests/test_poker.py b/tests/test_poker.py new file mode 100644 index 0000000..fd04676 --- /dev/null +++ b/tests/test_poker.py @@ -0,0 +1,4 @@ +def test_poker() -> None: + """Dummy test.""" + assert True + |