Sha256: 2bf473b5e756818dbaa948ec70ab72b764dcfe743fe3f14e0869bb7e54e873c1
Contents?: true
Size: 1.14 KB
Versions: 2
Compression:
Stored size: 1.14 KB
Contents
require_relative '../../spec_helper' describe Commands::Account::Get do is_required :id, :application_id let(:response) { subject.class.run(params) } let(:params) { {} } before do @account = create(:account) end context 'with valid params' do let(:params) { { id: @account.id, application_id: @account.application_id } } it 'is valid' do response.success?.should == true end it 'return the group' do response.result[:accounts].length.should == 1 response.result[:accounts].first[:id].should == @account.id.to_s end end context 'with invalid :id' do let(:params) { { id: 142857, application_id: @account.application_id }} it 'is :not_found' do response.success?.should == false response.result.should == {} response.status.should == :not_found end end context 'with invalid :application_id' do let(:params) { { id: @account.id, application_id: 142857 }} it 'is :not_found' do response.success?.should == false response.result.should == {} response.status.should == :not_found end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
restpack_account_service-0.0.4 | spec/commands/account/get_spec.rb |
restpack_account_service-0.0.3 | spec/commands/account/get_spec.rb |