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.50 test/lib/vedeu/input/key_test.rb
vedeu-0.4.49 test/lib/vedeu/input/key_test.rb
vedeu-0.4.48 test/lib/vedeu/input/key_test.rb
vedeu-0.4.47 test/lib/vedeu/input/key_test.rb
vedeu-0.4.46 test/lib/vedeu/input/key_test.rb
vedeu-0.4.45 test/lib/vedeu/input/key_test.rb
vedeu-0.4.44 test/lib/vedeu/input/key_test.rb
vedeu-0.4.43 test/lib/vedeu/input/key_test.rb
vedeu-0.4.42 test/lib/vedeu/input/key_test.rb
vedeu-0.4.41 test/lib/vedeu/input/key_test.rb
vedeu-0.4.40 test/lib/vedeu/input/key_test.rb
vedeu-0.4.39 test/lib/vedeu/input/key_test.rb
vedeu-0.4.38 test/lib/vedeu/input/key_test.rb
vedeu-0.4.37 test/lib/vedeu/input/key_test.rb
vedeu-0.4.36 test/lib/vedeu/input/key_test.rb
vedeu-0.4.35 test/lib/vedeu/input/key_test.rb
vedeu-0.4.34 test/lib/vedeu/input/key_test.rb
vedeu-0.4.33 test/lib/vedeu/input/key_test.rb
vedeu-0.4.32 test/lib/vedeu/input/key_test.rb
vedeu-0.4.31 test/lib/vedeu/input/key_test.rb