Sha256: be74746d04bfd33b9192030e1e3569ea2edc37332db2bb1479179781bc6e73db

Contents?: true

Size: 777 Bytes

Versions: 5

Compression:

Stored size: 777 Bytes

Contents

require 'test_helper'
require 'simple_aws/map_reduce'

describe SimpleAWS::MapReduce do

  before do
    @api = SimpleAWS::MapReduce.new "key", "secret"
  end

  it "points to the endpoint" do
    @api.uri.must_equal "https://elasticmapreduce.amazonaws.com"
  end

  it "works with the current version" do
    @api.version.must_equal "2009-03-31"
  end

  describe "API calls" do

    it "builds and signs calls with ActionParam rules" do
      SimpleAWS::Connection.any_instance.expects(:call).with do |request|
        params = request.params
        params.wont_be_nil

        params["Action"].must_equal "GetGroup"
        params["Signature"].wont_be_nil

        true
      end

      obj = SimpleAWS::MapReduce.new "key", "secret"
      obj.get_group
    end

  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
simple_aws-1.2.3 test/simple_aws/map_reduce_test.rb
simple_aws-1.2.2 test/simple_aws/map_reduce_test.rb
simple_aws-1.2.1 test/simple_aws/map_reduce_test.rb
simple_aws-1.2.0 test/simple_aws/map_reduce_test.rb
simple_aws-1.1.0 test/simple_aws/map_reduce_test.rb