diff --git a/test/Tmdb/Tests/HttpClient/HttpClientTest.php b/test/Tmdb/Tests/HttpClient/HttpClientTest.php index eff49791..afd42a7e 100644 --- a/test/Tmdb/Tests/HttpClient/HttpClientTest.php +++ b/test/Tmdb/Tests/HttpClient/HttpClientTest.php @@ -94,22 +94,6 @@ public function shouldCallPost() $this->testApi->post('/', array('name' => 'Henk')); } - /** - * @test - */ - public function shouldCallPostJson() - { - $this->setUp(); - - $this->guzzleMock - ->expects($this->once()) - ->method('postJson') - ->will($this->returnValue($this->getMock('Guzzle\Http\Message\RequestInterface'))) - ; - - $this->testApi->postJson('/', array('name' => 'Henk')); - } - /** * @test */