teamocil/spec/mock/layout.rb
2012-01-21 13:47:44 -05:00

19 lines
328 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