49 $this->client->expects( $this->once() )->method(
'run' )->with( [
51 'url' =>
'http://test/rest/42xyz42'
53 ] )->willReturn( [ 0,
'', [],
'',
'cURL has failed you today' ] );
54 $result = $this->bag->get(
'42xyz42' );
55 $this->assertFalse( $result );
56 $this->assertEquals( BagOStuff::ERR_UNREACHABLE, $this->bag->getLastError() );