Sha256: a0fed5a941ad02bec96260ff7e702fb5658b23714e6591a35659fee35abb102c

Contents?: true

Size: 500 Bytes

Versions: 86

Compression:

Stored size: 500 Bytes

Contents

module Fog
  module Compute
    class Joyent

      class Mock
        def get_dataset(id)
          if ds = self.data[:datasets][id]
            res = Excon::Response.new
            res.status = 200
            res.body = ds
          else
            raise Excon::Errors::NotFound
          end
        end
      end

      class Real
        def get_dataset
          request(
            :method => "GET",
            :path => "/my/datasets"
          )
        end
      end

    end
  end
end

Version data entries

86 entries across 86 versions & 16 rubygems

Version Path
brightbox-cli-0.18.0 lib/brightbox-cli/vendor/fog/lib/fog/joyent/requests/compute/get_dataset.rb
fog-1.3.1 lib/fog/joyent/requests/compute/get_dataset.rb
fog-1.3.0 lib/fog/joyent/requests/compute/get_dataset.rb
brightbox-cli-0.17.5 lib/brightbox-cli/vendor/fog/lib/fog/joyent/requests/compute/get_dataset.rb
fog-1.2.0 lib/fog/joyent/requests/compute/get_dataset.rb
ktheory-fog-1.1.2 lib/fog/joyent/requests/compute/get_dataset.rb