2012-01-21 18:47:44 +00:00
|
|
|
module Teamocil
|
|
|
|
module Mock
|
|
|
|
module Layout
|
|
|
|
|
|
|
|
def self.included(base) # {{{
|
|
|
|
base.class_eval do
|
2012-01-21 19:08:01 +00:00
|
|
|
|
2012-01-21 18:47:44 +00:00
|
|
|
# Do not execute anything
|
|
|
|
def execute_commands(commands)
|
|
|
|
# Nothing
|
|
|
|
end
|
2012-01-21 19:08:01 +00:00
|
|
|
|
2012-01-21 18:47:44 +00:00
|
|
|
end
|
|
|
|
end # }}}
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
Teamocil::Layout.send :include, Teamocil::Mock::Layout
|