Sha256: 10cb0f5818026899771ffa8b6d69ea6728c83da1efdb73936ddc9c0f80611639

Contents?: true

Size: 655 Bytes

Versions: 6

Compression:

Stored size: 655 Bytes

Contents

require 'test_helper'

describe 'Keymaps' do

  describe '#key' do
    subject {
      Vedeu.keymap 'keymaps' do
        key '' do
        end
      end
    }

    #it { subject.must_be_instance_of(Vedeu::Keymap) }

    # it 'allows the use of ... within Vedeu.keymap' do
    #   skip
    # end

    context 'when no value is provided' do

    end
  end

  describe '#name' do
    subject {
      Vedeu.keymap 'keymaps' do
        name ''
      end
    }

    #it { subject.must_be_instance_of(Vedeu::Keymap) }

    # it 'allows the use of ... within Vedeu.keymap' do
    #   skip
    # end

    context 'when no value is provided' do

    end
  end

end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
vedeu-0.3.5 test/integration/dsl/keymaps_test.rb
vedeu-0.3.4 test/integration/dsl/keymaps_test.rb
vedeu-0.3.3 test/integration/dsl/keymaps_test.rb
vedeu-0.3.2 test/integration/dsl/keymaps_test.rb
vedeu-0.3.1 test/integration/dsl/keymaps_test.rb
vedeu-0.3.0 test/integration/dsl/keymaps_test.rb