diff options
author | Christian Weiske <cweiske@cweiske.de> | 2011-06-27 19:59:06 +0200 |
---|---|---|
committer | Christian Weiske <cweiske@cweiske.de> | 2011-06-27 19:59:06 +0200 |
commit | 588d63a2c740335bb4ff7fbe7454fbe3876ea9c1 (patch) | |
tree | a0cdb97174ebffd1bfbbb8a63016eb330339eee1 /tests/www | |
parent | f2ac531f2646c34c107b92cd9ff1e2c1a12c9b39 (diff) | |
download | semanticscuttle-588d63a2c740335bb4ff7fbe7454fbe3876ea9c1.tar.gz semanticscuttle-588d63a2c740335bb4ff7fbe7454fbe3876ea9c1.tar.bz2 |
better method names
Diffstat (limited to 'tests/www')
-rw-r--r-- | tests/www/rssTest.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/www/rssTest.php b/tests/www/rssTest.php index d6891d6..63c2b3d 100644 --- a/tests/www/rssTest.php +++ b/tests/www/rssTest.php @@ -10,7 +10,7 @@ class www_rssTest extends TestBaseApi * A private bookmark should not show up in an rss feed if the * user is not logged in nor passes the private key */ - public function testPrivateNotLoggedIn() + public function testPrivateBookmarkNotLoggedIn() { list($uId, $username) = $this->addUserData(); $this->addBookmark( @@ -32,7 +32,7 @@ class www_rssTest extends TestBaseApi * Test a user who has RSS private key setup * with private bookmark. */ - public function testPrivateWithPrivateKey() + public function testPrivateBookmarkWithPrivateKey() { list($uId, $username, $password, $privateKey) = $this->addUserData( null, null, true @@ -58,7 +58,7 @@ class www_rssTest extends TestBaseApi * Verify that fetching the feed with a private key * does not keep you logged in */ - public function testPrivatekeyDoesNotKeepLoggedYouIn() + public function testPrivateKeyDoesNotKeepLoggedYouIn() { list($uId, $username, $password, $privateKey) = $this->addUserData( null, null, true |