diff --git a/.gitattributes b/.gitattributes index 06a6826..6f032f6 100644 --- a/.gitattributes +++ b/.gitattributes @@ -10,6 +10,7 @@ # testing and other tests/ export-ignore phpunit.xml.dist export-ignore +phpunit.php export-ignore composer.lock export-ignore .scrutinizer.yml export-ignore @@ -17,5 +18,5 @@ composer.lock export-ignore .editorconfig export-ignore # license -LICENSE -CONTRIBUTING.md \ No newline at end of file +LICENSE export-ignore +CONTRIBUTING.md export-ignore diff --git a/composer.json b/composer.json index 983f1d4..5fadfe8 100644 --- a/composer.json +++ b/composer.json @@ -1,5 +1,5 @@ { - "name": "productsupcom/sql", + "name": "aura/sql", "type": "library", "description": "A PDO extension that provides lazy connections, array quoting, query profiling, value binding, and convenience methods for common fetch styles. Because it extends PDO, existing code that uses PDO can use this without any changes to the existing code.", "keywords": [ diff --git a/tests/ExtendedPdoTest.php b/tests/ExtendedPdoTest.php index 5186e0c..497e9cf 100644 --- a/tests/ExtendedPdoTest.php +++ b/tests/ExtendedPdoTest.php @@ -419,12 +419,6 @@ public function testFetchOne() $this->assertEquals($expect, $actual); } - public function testFetchOneWithNoResult() - { - $stm = "SELECT id, name FROM pdotest WHERE 1=2"; - $this->assertFalse($this->pdo->fetchOne($stm)); - } - public function testGroupSingleColumn() { $stm = "SELECT id, name FROM pdotest WHERE id = 1";