def test_none_row_false(self):
     test = Workbook().active
     test.append(('Not', 'repeating', '!!', ';)', ':D'))
     self.assertFalse(etl.none_row(test.rows[0]))
 def test_none_row_false(self):
     test = Workbook().active
     test.append(('Not','repeating','!!',';)',':D'))
     self.assertFalse(etl.none_row(test.rows[0]))
 def test_none_row_true(self):
     test = Workbook().active
     test.append(('None', 'None', 'None', 'None', 'None', 'None'))
     self.assertTrue(etl.none_row(test.rows[0]))
 def test_none_row_true(self):
     test = Workbook().active
     test.append(('None','None','None','None','None','None'))
     self.assertTrue(etl.none_row(test.rows[0]))