From ca65b3836eaa5b026b3f13afdd7ad3b8b192e9a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A1n=20Oliva?= Date: Mon, 8 May 2023 21:31:09 -0600 Subject: First attempt at sorting accounts. I DID IT!! I'm really happy with the result. :') --- utils/acc_regex_test.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 utils/acc_regex_test.py (limited to 'utils/acc_regex_test.py') diff --git a/utils/acc_regex_test.py b/utils/acc_regex_test.py new file mode 100644 index 0000000..309d83a --- /dev/null +++ b/utils/acc_regex_test.py @@ -0,0 +1,17 @@ +import acc_regex +import unittest + + +class test_create_ors(unittest.TestCase): + def test_create_ors(self): + self.assertEqual(acc_regex.create_ors('Rent Transportation'), 'Rent or Transportation') + self.assertEqual(acc_regex.create_ors('Income and Job'), 'Income and Job') + self.assertEqual(acc_regex.create_ors('Radio and (Judge Police)'), 'Radio and (Judge or Police)') + + self.assertEqual(acc_regex.create_ors('(Telephone not Beach) not House'), '(Telephone or not Beach) or not House') + + self.assertEqual(acc_regex.create_ors('Run'), 'Run') + + +if __name__ == '__main__': + unittest.main() -- cgit v1.2.3