Sha256: 4844702586a14c57c94c92cd63d38244c76e660815dfcb9dbe4ef4b9f0a1dfbc
Contents?: true
Size: 1.11 KB
Versions: 3
Compression:
Stored size: 1.11 KB
Contents
require_relative '../../../../test_helper' module Troo module Commands describe Default do let(:described_class) { Default } let(:klass) { stub(type: :resource_type) } let(:id) {} let(:resource) { stub } let(:outcome) { true } let(:decorator) { stub(name: 'Test') } before do API::Client.stubs(:perform) klass.stubs(:retrieve).returns(resource) resource.stubs(:set_default!).returns(outcome) resource.stubs(:decorator).returns(decorator) end describe '.dispatch' do subject { described_class.dispatch(klass, id) } it { subject.must_be_instance_of(String) } context 'when the resource exists' do it 'sets the default and returns a polite message' do subject.must_match(/set as default/) end end context 'when the resource does not exist' do let(:outcome) { false } it 'returns a polite message' do subject.must_match(/cannot be found/) end end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
troo-0.0.15 | test/lib/troo/cli/commands/default_test.rb |
troo-0.0.14 | test/lib/troo/cli/commands/default_test.rb |
troo-0.0.13 | test/lib/troo/cli/commands/default_test.rb |