Sha256: d78e7f74ce0b088802b96f4017de3ca29749afc7d69723594cd43eea03e812c1

Contents?: true

Size: 826 Bytes

Versions: 7

Compression:

Stored size: 826 Bytes

Contents

require 'test_helper'
require 'aws/elastic_beanstalk'

describe AWS::ElasticBeanstalk do

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

  it "points to endpoint, default to us-east-1" do
    @api.uri.must_equal "https://elasticbeanstalk.us-east-1.amazonaws.com"
  end

  it "works with the current version" do
    @api.version.must_equal "2010-12-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 "DescribeApplications"
        params["Signature"].wont_be_nil

        true
      end

      obj = AWS::ElasticBeanstalk.new "key", "secret"
      obj.describe_applications
    end

  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

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