Esempio n. 1
0
 def test_ProgressiveAspect_3(self):
     text = "I would be eating so much everyday!"
     self.assertEqual(get_aspect(text), Aspects.progressive)
Esempio n. 2
0
 def test_Perfect_ProgressiveAspect_3(self):
     text = "She had been flying to Vancouver"
     self.assertEqual(get_aspect(text), Aspects.perfect_progressive)
Esempio n. 3
0
 def test_Perfect_ProgressiveAspect_4(self):
     text = "Will she have been singing?"
     self.assertEqual(get_aspect(text), Aspects.perfect_progressive)
Esempio n. 4
0
 def test_Perfect_ProgressiveAspect(self):
     text = "She will have been singing"
     self.assertEqual(get_aspect(text), Aspects.perfect_progressive)
Esempio n. 5
0
 def test_Perfect_ProgressiveAspect_2(self):
     text = "They have been fighting for the whole day."
     self.assertEqual(get_aspect(text), Aspects.perfect_progressive)
Esempio n. 6
0
 def test_PerfectAspect_5(self):
     text = "Will they have eaten?"
     self.assertEqual(get_aspect(text), Aspects.perfect)
Esempio n. 7
0
 def test_PerfectAspect_4(self):
     text = "She has taken all her belongings"
     self.assertEqual(get_aspect(text), Aspects.perfect)
Esempio n. 8
0
 def test_PerfectAspect_3(self):
     text = "Yesterday it has found"
     self.assertEqual(get_aspect(text), Aspects.perfect)
Esempio n. 9
0
 def test_PerfectAspect_2(self):
     text = "They will have eaten"
     self.assertEqual(get_aspect(text), Aspects.perfect)
Esempio n. 10
0
 def test_PerfectAspect(self):
     text = "I had cleaned the whole kitchen"
     self.assertEqual(get_aspect(text), Aspects.perfect)