Source

						public function testAllMethodsNoConnection() {
		$http = new Service(array('init' => false));
		$this->assertFalse($http->get());
		$this->assertFalse($http->post());
		$this->assertFalse($http->put());
		$this->assertFalse($http->delete());
	}