teamocil/spec/mock/layout.rb
2012-01-21 14:08:01 -05:00

21 lines
330 B
Ruby

module Teamocil
module Mock
module Layout
def self.included(base) # {{{
base.class_eval do
# Do not execute anything
def execute_commands(commands)
# Nothing
end
end
end # }}}
end
end
end
Teamocil::Layout.send :include, Teamocil::Mock::Layout