summaryrefslogtreecommitdiffstats
path: root/Tests
diff options
context:
space:
mode:
authortailor <cygnus@janrain.com>2007-09-24 18:31:33 +0000
committertailor <cygnus@janrain.com>2007-09-24 18:31:33 +0000
commitf9d88780e22f049e92c7a23b39ce0b2784ef3021 (patch)
tree519214b07a286c4d3d7b9e962b6fd9c9eabe413d /Tests
parent0f270daead5c4821861718c734e55e54ed7ca4d7 (diff)
downloadphp-openid-f9d88780e22f049e92c7a23b39ce0b2784ef3021.zip
php-openid-f9d88780e22f049e92c7a23b39ce0b2784ef3021.tar.gz
php-openid-f9d88780e22f049e92c7a23b39ce0b2784ef3021.tar.bz2
[project @ Add cleanupNonces to SQL stores]
Diffstat (limited to 'Tests')
-rw-r--r--Tests/Auth/OpenID/StoreTest.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/Tests/Auth/OpenID/StoreTest.php b/Tests/Auth/OpenID/StoreTest.php
index 485a4c4..b5b6cb1 100644
--- a/Tests/Auth/OpenID/StoreTest.php
+++ b/Tests/Auth/OpenID/StoreTest.php
@@ -491,6 +491,7 @@ explicitly');
$this->_testStore($store);
$this->_testNonce($store);
+ $this->_testNonceCleanup($store);
$db->disconnect();
unset($db);
@@ -555,6 +556,7 @@ explicitly');
$this->assertTrue($store->createTables(), "Table creation failed");
$this->_testStore($store);
$this->_testNonce($store);
+ $this->_testNonceCleanup($store);
}
$db->disconnect();
@@ -612,6 +614,7 @@ explicitly');
$store->createTables();
$this->_testStore($store);
$this->_testNonce($store);
+ $this->_testNonceCleanup($store);
$db->query("DROP DATABASE $temp_db_name");
}