Ejemplo n.º 1
0
 def test_python(self):
     t = TableFu(self.csv_file)
     self.csv_file.seek(0)
     reader = csv.DictReader(self.csv_file)
     jsoned = [row for row in reader]
     self.assertEqual(list(t.dict()), jsoned)
Ejemplo n.º 2
0
 def test_python(self):
     t = TableFu(self.csv_file)
     self.csv_file.seek(0)
     reader = csv.DictReader(self.csv_file)
     jsoned = [row for row in reader]
     self.assertEqual(list(t.dict()), jsoned)