teamocil/spec/mock/cli.rb

21 lines
306 B
Ruby
Raw Permalink Normal View History

2012-01-21 19:08:01 +00:00
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