teamocil/spec/layout_spec.rb
2011-10-10 08:54:26 -04:00

14 lines
340 B
Ruby

require File.join(File.dirname(__FILE__), "spec_helper.rb")
describe Teamocil::Layout do
context "initializing" do
it "create two windows" do # {{{
layout = Teamocil::Layout.new(layouts["two-windows"], {})
commands = layout.generate_commands
commands.grep(/new-window/).length.should be 2
end # }}}
end
end