function test_response_is_cacheable_is_false_when_cache_control_no_store()
 {
     $response = new HttpResponse(200);
     $response->headers['cache-control'] = "no-store";
     $this->assertFalse($response->is_cacheable());
 }