class Kender::TestUnit
Public Instance Methods
available?()
click to toggle source
# File lib/kender/commands/test_unit.rb, line 4 def available? in_gemfile?('test-unit') and not(ENV['VALIDATE_PROJECT']) end
command()
click to toggle source
# File lib/kender/commands/test_unit.rb, line 8 def command if defined?(ParallelTests) 'bundle exec rake parallel:test' else 'bundle exec rake test' end end