Renamed namespace to JacobKiers
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
<?php
|
||||
|
||||
use Mockery as m;
|
||||
use GaryJones\OAuth\HmacSha1;
|
||||
use JacobKiers\OAuth\HmacSha1;
|
||||
|
||||
class HmacSha1Test extends PHPUnit_Framework_TestCase
|
||||
{
|
||||
@@ -56,7 +56,7 @@ private function getSignatureMethod()
|
||||
|
||||
private function getRequest()
|
||||
{
|
||||
return m::mock('GaryJones\OAuth\Request', function ($mock) {
|
||||
return m::mock('JacobKiers\OAuth\Request', function ($mock) {
|
||||
$mock->shouldReceive('getSignatureBaseString')
|
||||
->withNoArgs()
|
||||
->andReturn('POST&http%3A%2F%2Fexample.com%2Ffoobar&oauth_signature_method%3DHMAC-SHA1')->once();
|
||||
@@ -65,14 +65,14 @@ private function getRequest()
|
||||
|
||||
private function getClient()
|
||||
{
|
||||
return m::mock('GaryJones\OAuth\Client', function ($mock) {
|
||||
return m::mock('JacobKiers\OAuth\Client', function ($mock) {
|
||||
$mock->shouldReceive('getSecret')->withNoArgs()->andReturn('secret')->once();
|
||||
});
|
||||
}
|
||||
|
||||
private function getToken()
|
||||
{
|
||||
return m::mock('GaryJones\OAuth\Token', function ($mock) {
|
||||
return m::mock('JacobKiers\OAuth\Token', function ($mock) {
|
||||
$mock->shouldReceive('getSecret')->withNoArgs()->andReturn('token_secret');
|
||||
});
|
||||
}
|
||||
|
Reference in New Issue
Block a user