Permalink
Cannot retrieve contributors at this time
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?
inc-validator-client-test/Rakefile
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
39 lines (31 sloc)
727 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 :test_bad_validator do | |
run_test 'bad_validator' | |
end | |
task :test_bad_xml do | |
run_test 'bad_xml' | |
end | |
task :test_validate do | |
run_test 'validate' | |
end | |
task :test_validate_empty do | |
run_test 'validate_empty' | |
end | |
task :test_validate_sanity do | |
run_test 'validate_sanity' | |
end | |
task default: %i[test_get_validators test_bad_validator | |
test_bad_xml test_validate test_validate_empty | |
test_validate_sanity] do | |
puts 'All tests done.' | |
end |