summaryrefslogtreecommitdiff
path: root/test/ORMTest.php
diff options
context:
space:
mode:
authorSimon Holywell <[email protected]>2013-01-18 13:20:00 +0000
committerSimon Holywell <[email protected]>2013-01-18 13:20:00 +0000
commitdee4dd8166d47c69fe982b701cee40c44f9aabea (patch)
tree4eb8c598f05af3553ec1a1d603fb241c4dabacbe /test/ORMTest.php
parentf9a6f92e3e38a4235438c14d5e1c205f331133ee (diff)
Move out non-query gen tests
Diffstat (limited to 'test/ORMTest.php')
-rw-r--r--test/ORMTest.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/ORMTest.php b/test/ORMTest.php
index 81a5b05..ced3cbd 100644
--- a/test/ORMTest.php
+++ b/test/ORMTest.php
@@ -78,4 +78,10 @@ class ORMTest extends PHPUnit_Framework_TestCase {
$this->assertSame(count($result_set), 5);
}
+ public function testGetLastPdoStatement() {
+ ORM::for_table('widget')->where('name', 'Fred')->find_one();
+ $statement = ORM::get_last_statement();
+ $this->assertInstanceOf('MockPDOStatement', $statement);
+ }
+
} \ No newline at end of file