Sha256: 323963962abde3302a1f2ef7287e57f8e24a330d728ac1dfa45815367dd52006
Contents?: true
Size: 489 Bytes
Versions: 19
Compression:
Stored size: 489 Bytes
Contents
require "spec_helper" describe "Redcar::Keymap::Builder DSL" do it "creates a keymap" do builder = Redcar::Keymap::Builder.new("test", :osx) {} builder.keymap.should be_an_instance_of(Redcar::Keymap) builder.keymap.length.should == 0 end it "add entries to the keymap" do builder = Redcar::Keymap::Builder.new("test", :osx) do link "Ctrl+S", :OpenNewEditTabCommand end builder.keymap.length.should == 1 builder.keymap.command("Ctrl+S") end end
Version data entries
19 entries across 19 versions & 2 rubygems