Skip to content

Commit c403732

Browse files
committed
Fix double quotes
1 parent e610394 commit c403732

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import doctest
2+
import unittest
3+
4+
import calculations
5+
6+
7+
def load_tests(loader, tests, ignore):
8+
tests.addTests(doctest.DocFileSuite("tests_file.txt"))
9+
tests.addTests(doctest.DocTestSuite(calculations))
10+
return tests
11+
12+
13+
if __name__ == "__main__":
14+
unittest.main()

0 commit comments

Comments
 (0)