diff options
author | tailor <cygnus@janrain.com> | 2007-02-01 22:16:38 +0000 |
---|---|---|
committer | tailor <cygnus@janrain.com> | 2007-02-01 22:16:38 +0000 |
commit | 06ba77a3f7d351a964b1469e25e325e836b3f1d7 (patch) | |
tree | f6fd607a595af266c2f75ad20e75b7a301c6c0b3 /Tests | |
parent | 34234e0f95de9248206250860c2798892d3ccf00 (diff) | |
download | php-openid-06ba77a3f7d351a964b1469e25e325e836b3f1d7.zip php-openid-06ba77a3f7d351a964b1469e25e325e836b3f1d7.tar.gz php-openid-06ba77a3f7d351a964b1469e25e325e836b3f1d7.tar.bz2 |
[project @ Remove checkAuthMissingSignedField]
Diffstat (limited to 'Tests')
-rw-r--r-- | Tests/Auth/OpenID/Server.php | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/Tests/Auth/OpenID/Server.php b/Tests/Auth/OpenID/Server.php index 532b412..a4b4467 100644 --- a/Tests/Auth/OpenID/Server.php +++ b/Tests/Auth/OpenID/Server.php @@ -346,20 +346,6 @@ class Tests_Auth_OpenID_Test_Decode extends PHPUnit_TestCase { $this->assertEquals($r->sig, 'sigblob'); } - function test_checkAuthMissingSignedField() - { - $args = array( - 'openid.mode' => 'check_authentication', - 'openid.assoc_handle' => '{dumb}{handle}', - 'openid.sig' => 'sigblob', - 'openid.signed' => 'foo,bar,mode', - 'openid.foo' => 'signedval1', - 'openid.baz' => 'unsigned'); - - $r = $this->decoder->decode($args); - $this->assertTrue(is_a($r, 'Auth_OpenID_ServerError')); - } - function test_checkAuthMissingSignature() { $args = array( |