Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/lookup-server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'server/vendor/abraham/twitteroauth/tests/HmacSha1Test.php')
-rw-r--r--server/vendor/abraham/twitteroauth/tests/HmacSha1Test.php35
1 files changed, 0 insertions, 35 deletions
diff --git a/server/vendor/abraham/twitteroauth/tests/HmacSha1Test.php b/server/vendor/abraham/twitteroauth/tests/HmacSha1Test.php
deleted file mode 100644
index c17ce26..0000000
--- a/server/vendor/abraham/twitteroauth/tests/HmacSha1Test.php
+++ /dev/null
@@ -1,35 +0,0 @@
-<?php
-
-namespace Abraham\TwitterOAuth\Tests;
-
-use Abraham\TwitterOAuth\HmacSha1;
-
-class HmacSha1Test extends AbstractSignatureMethodTest
-{
- protected $name = 'HMAC-SHA1';
-
- public function getClass()
- {
- return new HmacSha1();
- }
-
- public function signatureDataProvider()
- {
- return array(
- array('5CoEcoq7XoKFjwYCieQvuzadeUA=', $this->getRequest(), $this->getConsumer(), $this->getToken()),
- array(
- 'EBw0gHngam3BTx8kfPfNNSyKem4=',
- $this->getRequest(),
- $this->getConsumer('key', 'secret'),
- $this->getToken()
- ),
- array(
- 'kDsHFZzws2a5M6cAQjfpdNBo+v8=',
- $this->getRequest(),
- $this->getConsumer('key', 'secret'),
- $this->getToken('key', 'secret')
- ),
- array('EBw0gHngam3BTx8kfPfNNSyKem4=', $this->getRequest(), $this->getConsumer('key', 'secret'), null),
- );
- }
-} \ No newline at end of file