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