# File lib/fog/openstack/requests/image/list_public_images.rb, line 15
        def list_public_images
          response = Excon::Response.new
          response.status = [200, 204][rand(1)]
          response.body = {
            "images"=>[{
              "name"             => Fog::Mock.random_letters(10),
              "size"             => Fog::Mock.random_numbers(8).to_i,
              "disk_format"      => "iso",
              "container_format" => "bare",
              "id"               => Fog::Mock.random_hex(36),
              "checksum"         => Fog::Mock.random_hex(32)}]
          }
          response
        end