updated unit tests and fixed a bug
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-09-20 00:18:26 -05:00
parent 588382ae14
commit 24f6e7b563
7 changed files with 62 additions and 32 deletions

View File

@@ -5,8 +5,8 @@ from qprocess import is_downloading,is_protected_under_ratio,is_old_tor,is_prote
class TestQbitmaid(unittest.TestCase):
def test_ispreme_sanity(self):
self.assertTrue(is_preme(1,1))
self.assertTrue(is_preme(2,1))
self.assertFalse(is_preme(1,2))
self.assertTrue(is_preme(1,2))
self.assertFalse(is_preme(2,1))
def test_ispreme(self):
pass