Example #1
0
 /**
  * We should get back the path to the csv file if the csv file exists
  */
 public function test_Csv_Reader_Get_Path()
 {
     $file = './data/tab-200.csv';
     $reader = new Csv_Reader($this->files['tab-200']);
     $this->assertEqual($reader->getPath(), $file);
 }
 /**
  * We should get back the path to the csv file if the csv file exists
  */
 public function test_Csv_Reader_Get_Path()
 {
     $reader = new Csv_Reader($this->files['tab-200']);
     $this->assertEquals($this->files['tab-200'], $reader->getPath());
 }