Lines Matching defs:cell
115 self.assertEqual(c[0].__class__.__name__, "cell")
123 msg = "shouldn't be able to read an empty cell"
134 self.fail("shouldn't be able to read an empty cell")
151 self.fail("shouldn't be able to read an empty cell")
368 def cell(value):
369 """Create a cell containing the given value."""
376 """Create an empty cell."""
391 # guarantees about the semantics (or even existence) of cell
393 self.assertTrue(cell(2) < cell(3))
394 self.assertTrue(empty_cell() < cell('saturday'))
396 self.assertTrue(cell(-36) == cell(-36.0))
397 self.assertTrue(cell(True) > empty_cell())