Skip to content
Permalink
6d0311f82e
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
17 lines (14 sloc) 321 Bytes
task :cop do
system 'bundle exec rubocop'
end
def run_test(test_name)
puts "Running test #{test_name}."
system "bundle exec ruby -I lib test/test_#{test_name}.rb"
puts 'Done.'
end
task :test_get_validators do
run_test 'get_validators'
end
task default: %(test_get_validators) do
puts 'All tests done.'
end