mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-05 05:34:10 -05:00
32 lines
668 B
Ruby
32 lines
668 B
Ruby
# The default action tests commands and libraries.
|
|
task default: %w[command_test lib_test]
|
|
|
|
# Command tests
|
|
task :command_test do
|
|
ruby 'tests/commands/const.rb'
|
|
ruby 'tests/commands/help.rb'
|
|
ruby 'tests/commands/list.rb'
|
|
ruby 'tests/commands/prop.rb'
|
|
ruby 'tests/commands/remove.rb'
|
|
ruby 'tests/commands/whatprovides.rb'
|
|
end
|
|
|
|
# Library tests
|
|
task :lib_test do
|
|
ruby 'tests/lib/docopt.rb'
|
|
ruby 'tests/lib/package_utils.rb'
|
|
end
|
|
|
|
# Tool tests
|
|
task :tool_test do
|
|
ruby 'tests/tool/getrealdeps.rb'
|
|
ruby 'tests/tool/version.rb'
|
|
end
|
|
|
|
# Package tests
|
|
task :package_test do
|
|
ruby 'tests/dep_test'
|
|
ruby 'tests/prop_test'
|
|
ruby 'tests/buildsystem_test'
|
|
end
|