Sha256: 6e16bf4a1dcd3efa4a4a098d95a7b35f2e028a7ec92bfeafb62f6711cbb047ab

Contents?: true

Size: 1.14 KB

Versions: 1

Compression:

Stored size: 1.14 KB

Contents

require 'spec_helper'

describe Commands::Accounts::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

1 entries across 1 versions & 1 rubygems

Version Path
restpack_account_service-0.0.5 spec/commands/account/get_spec.rb