Skip to content

Commit

Permalink
WIP: Adding tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ancestor-mithril committed Jul 12, 2024
1 parent 3914298 commit 1ee802e
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions tests/test_readers.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import unittest


class MyTestCase(unittest.TestCase):
def test_something(self):
self.assertEqual(True, True) # add assertion here


if __name__ == '__main__':
unittest.main()

0 comments on commit 1ee802e

Please sign in to comment.