Sha256: 7ddad1db4c6786998278e70961883503bae9946ecd5ea241f44108b40845483f

Contents?: true

Size: 989 Bytes

Versions: 53

Compression:

Stored size: 989 Bytes

Contents

require 'test_helper'

module Vedeu

  describe Key do

    let(:described) { Vedeu::Key }
    let(:instance)  { described.new(input) { :output } }
    let(:input)     { 'a' }

    describe '#initialize' do
      it { instance.must_be_instance_of(described) }
      it { instance.instance_variable_get('@input').must_equal(input) }

      context 'when the required block is not given' do
        subject { described.new(input) }

        it { proc { subject }.must_raise(InvalidSyntax) }
      end
    end

    describe '#input' do
      subject { instance.input }

      it 'returns the key defined' do
        subject.must_equal('a')
      end

      it { instance.must_respond_to(:key) }
    end

    describe '#output' do
      subject { instance.output }

      it 'returns the result of calling the proc' do
        subject.must_equal(:output)
      end

      it { instance.must_respond_to(:action) }
      it { instance.must_respond_to(:press) }
    end

  end # Key

end # Vedeu

Version data entries

53 entries across 53 versions & 1 rubygems

Version Path
vedeu-0.4.30 test/lib/vedeu/input/key_test.rb
vedeu-0.4.29 test/lib/vedeu/input/key_test.rb
vedeu-0.4.28 test/lib/vedeu/input/key_test.rb
vedeu-0.4.27 test/lib/vedeu/input/key_test.rb
vedeu-0.4.26 test/lib/vedeu/input/key_test.rb
vedeu-0.4.25 test/lib/vedeu/input/key_test.rb
vedeu-0.4.24 test/lib/vedeu/input/key_test.rb
vedeu-0.4.23 test/lib/vedeu/input/key_test.rb
vedeu-0.4.22 test/lib/vedeu/input/key_test.rb
vedeu-0.4.21 test/lib/vedeu/input/key_test.rb
vedeu-0.4.20 test/lib/vedeu/input/key_test.rb
vedeu-0.4.19 test/lib/vedeu/input/key_test.rb
vedeu-0.4.18 test/lib/vedeu/input/key_test.rb