Example #1
0
 public function testCreatesLongException()
 {
     $r = new Request('GET', 'http://www.google.com');
     $e = RingBridge::getNoRingResponseException($r);
     $this->assertInstanceOf('GuzzleHttp\\Exception\\RequestException', $e);
     $this->assertSame($r, $e->getRequest());
 }