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

21 lines
306 B
Ruby

module Teamocil
module Mock
module CLI
def self.included(base) # {{{
base.class_eval do
# Do not print anything
def print_layouts
# Nothing
end
end
end # }}}
end
end
end
Teamocil::CLI.send :include, Teamocil::Mock::CLI