Sha256: bf3e6562a08d8877466df10768fc7025d8774f76b620811fd5f70de36803a611

Contents?: true

Size: 1.88 KB

Versions: 6

Compression:

Stored size: 1.88 KB

Contents

require_relative '../../../test_helper'

module Vedeu
  describe CommandRepository do
    let(:described_class) { CommandRepository }
    let(:input)           { }

    before do
      Command.create({ name:    'apple',
                       klass:   DummyCommand,
                       options: { keypress: 'a', keyword: 'apple' } })
      Command.create({ name:    'banana',
                       klass:   DummyCommand,
                       options: { keypress: 'b', keyword: 'banana' } })
    end

    after do
      CommandRepository.reset
    end

    describe '.by_keypress' do
      let(:subject) { described_class.by_keypress(input) }

      context 'when the command was found by keypress' do
        let(:input) { 'b' }

        it 'returns the Command instance' do
          subject.must_be_instance_of(Command)
        end

        it 'returns the correct command' do
          subject.name.must_equal('banana')
        end

        it 'returns the correct command' do
          subject.name.wont_equal('apple')
        end

        it 'returns the correct command' do
          subject.keypress.must_equal('b')
        end
      end
    end

    describe '.by_keyword' do
      let(:subject) { described_class.by_keyword(input) }

      context 'when the command was found by keyword' do
        let(:input) { 'apple' }

        it 'returns the Command instance' do
          subject.must_be_instance_of(Command)
        end

        it 'returns the correct command' do
          subject.keypress.must_equal('a')
        end

        it 'returns the correct command' do
          subject.keypress.wont_equal('b')
        end

        it 'returns the correct command' do
          subject.name.wont_equal('banana')
        end
      end
    end

    describe '.klass' do
      let(:subject) { described_class.klass }

      it 'returns Command' do
        subject.must_equal(Command)
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
vedeu-0.0.20 test/lib/vedeu/repository/command_repository_test.rb
vedeu-0.0.19 test/lib/vedeu/repository/command_repository_test.rb
vedeu-0.0.18 test/lib/vedeu/repository/command_repository_test.rb
vedeu-0.0.17 test/lib/vedeu/repository/command_repository_test.rb
vedeu-0.0.16 test/lib/vedeu/repository/command_repository_test.rb
vedeu-0.0.15 test/lib/vedeu/repository/command_repository_test.rb