Example #1
0
 def test_has_more_rows_negative(self):
     cursor = Cursor([[1]])
     cursor.advance_row()
     self.assertTrue(cursor.has_more_rows())
Example #2
0
 def test_has_more_rows_positive(self):
     cursor = Cursor([[1]])
     self.assertTrue(cursor.has_more_rows())