Skip to content

Commit

Permalink
Add simple test for habit tracker.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nurdok committed Jan 25, 2025
1 parent 0cb78bb commit db0d749
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/spanreed/plugins/habit_tracker_test.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, False) # add assertion here


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

0 comments on commit db0d749

Please sign in to comment.