class Roger::Cli::Test

The test command and all it's children

Public Class Methods

exit_on_failure?() click to toggle source
# File lib/roger/cli/test.rb, line 4
def self.exit_on_failure?
  true
end

Public Instance Methods

all() click to toggle source
# File lib/roger/cli/test.rb, line 11
def all
  raise(Thor::Error, "Test failed") unless Cli::Base.project.test.run!
end