Sha256: 3eaa9d7c6a1ee4d0c6c5fc05ca698b8f5116eb6616960debf81aa6c76b1ca5d6
Contents?: true
Size: 726 Bytes
Versions: 1
Compression:
Stored size: 726 Bytes
Contents
require 'spec_helper' describe MWS::API::Recommendations do let(:connection) do MWS::Connection.new(aws_access_key_id: 'access key', aws_secret_access_key: 'secret key', seller_id: 'seller id', mws_auth_token: 'auth token') end let(:recommendations) { MWS::API::Recommendations.new(connection) } it 'should inheritance from MWS::API::Base' do expect(MWS::API::Recommendations.superclass).to eq(MWS::API::Base) end it 'should set the right :uri' do expect(recommendations.uri).to eq('/Recommendations/2013-04-01') end it 'should set the right :version' do expect(recommendations.version).to eq('2013-04-01') end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mws_rb-0.0.6 | spec/mws-rb/api/recommendations_spec.rb |