Skip to content

Commit

Permalink
Adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanflorence committed Sep 27, 2010
1 parent 2b3ad2f commit 41bc67b
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions tests/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ Dir.chdir('..')

task :default => [:testall]
task :testall => [
:test_languages,
:test_garuda,
:test_run_script,
:test_simple,
:test_gito
]
Expand All @@ -16,15 +18,25 @@ task :testall => [
# Tests
# -----------------------------------------------------------------------

desc 'Tests local stuff not involving installation'
desc 'Test the Garuda Class'
task :test_garuda do
ruby 'tests/languages_test.rb'
Rake::Task["create_repo"].execute
ruby 'tests/garuda_test.rb'
Rake::Task["remove_repo"].execute
end

desc 'Tests the `run` script'
task :test_run_script do
Rake::Task["create_repo"].execute
ruby 'tests/run_test.rb'
Rake::Task["remove_repo"].execute
end

desc 'Tests if environment can run ruby, python, and node'
task :test_languages do
ruby 'tests/languages_test.rb'
end

desc 'Runs the simple Installation tests'
task :test_simple => :simple_env do
ruby 'tests/simple_install_test.rb'
Expand Down

0 comments on commit 41bc67b

Please sign in to comment.