Skip to content

Commit debb913

Browse files
maithytonMaithy Ton
authored andcommitted
initial virtualenv dependencies
1 parent dd75bfa commit debb913

File tree

2 files changed

+3
-12
lines changed

2 files changed

+3
-12
lines changed

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
numpy==1.16.4

tests/testSentence.py

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,8 @@
88
class testSentence(unittest.TestCase):
99
def test_table(self):
1010
print(AtomicSentence([True,False]).table())
11-
def test_condition(self):
11+
def test_set(self):
1212
print(AtomicSentence().set(False).val())
13-
# def test_isupper(self):
14-
# self.assertTrue('FOO'.isupper())
15-
# self.assertFalse('Foo'.isupper())
16-
17-
# def test_split(self):
18-
# s = 'hello world'
19-
# self.assertEqual(s.split(), ['hello', 'world'])
20-
# # check that s.split fails when the separator is not a string
21-
# with self.assertRaises(TypeError):
22-
# s.split(2)
2313

2414
if __name__ == '__main__':
25-
unittest.main()
15+
unittest.main()

0 commit comments

Comments
 (0)