Sha256: 56f9f9bdc701e0f1eb0187c3bbdce0cf75a38f6149f7cfa40fd6d4c9927e3587

Contents?: true

Size: 720 Bytes

Versions: 7

Compression:

Stored size: 720 Bytes

Contents

require 'test_helper'
require 'aws/rds'

describe AWS::RDS do

  before do
    @api = AWS::RDS.new "key", "secret"
  end

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

  it "works with the current version" do
    @api.version.must_equal "2011-04-01"
  end

  describe "API calls" do

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

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

        true
      end

      obj = AWS::RDS.new "key", "secret"
      obj.describe_events
    end

  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
simple_aws-1.0.0 test/aws/rds_test.rb
simple_aws-1.0.0.pre3 test/aws/rds_test.rb
simple_aws-1.0.0.pre2 test/aws/rds_test.rb
simple_aws-1.0.0.pre1 test/aws/rds_test.rb
simple_aws-0.0.1d test/aws/rds_test.rb
simple_aws-0.0.1c test/aws/rds_test.rb
simple_aws-0.0.1b test/aws/rds_test.rb