public function testIgnoresNonErrors()
 {
     $strategy = new CurlBackoffStrategy();
     $request = $this->getMock('Guzzle\\Http\\Message\\Request', array(), array(), '', false);
     $this->assertEquals(false, $strategy->getBackoffPeriod(0, $request, new Response(200)));
 }