summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorIgnace Nyamagana Butera <nyamsprod@gmail.com>2014-08-08 10:39:11 +0200
committerIgnace Nyamagana Butera <nyamsprod@gmail.com>2014-08-08 11:13:32 +0200
commit0eea804cb1e7271b1449febd4f2a8e7cb2bba703 (patch)
tree1674af4f0847027f2a057562376026fe4be23016 /test
parentf585b92a68d6c3bcdb7c06cc1bb6366fe1a29ad5 (diff)
downloadcsv-0eea804cb1e7271b1449febd4f2a8e7cb2bba703.zip
csv-0eea804cb1e7271b1449febd4f2a8e7cb2bba703.tar.gz
csv-0eea804cb1e7271b1449febd4f2a8e7cb2bba703.tar.bz2
update library CI settings
Diffstat (limited to 'test')
-rw-r--r--test/CsvTest.php12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/CsvTest.php b/test/CsvTest.php
index e252f26..3237029 100644
--- a/test/CsvTest.php
+++ b/test/CsvTest.php
@@ -72,14 +72,6 @@ class CsvTest extends PHPUnit_Framework_TestCase
}
/**
- * @expectedException PHPUnit_Framework_Error
- */
- public function testCreateFromPathWithWrongType()
- {
- Reader::createFromPath(new DateTime);
- }
-
- /**
* @expectedException InvalidArgumentException
*/
public function testConstructorWithNotStringableObject()
@@ -300,9 +292,6 @@ EOF;
$this->assertSame(STREAM_FILTER_READ, $csv->getStreamFilterMode());
}
- /**
- * @expectedException PHPUnit_Framework_Error
- */
public function testappendStreamFilter()
{
$csv = Reader::createFromPath(__DIR__.'/foo.csv');
@@ -310,7 +299,6 @@ EOF;
foreach ($csv->getIterator() as $row) {
$this->assertSame($row, ['JOHN', 'DOE', 'JOHN.DOE@EXAMPLE.COM']);
}
- $csv->appendStreamFilter(new DateTime);
}
/**