Skip to content

Commit

Permalink
Rakefile: new tasks: test-all to run all tests, etc.
Browse files Browse the repository at this point in the history
 * Rakefile: new tasks: test-all to run all tests, and test-network
   to run tests in test/network.
  • Loading branch information
ngoto committed Nov 24, 2011
1 parent 5371953 commit 688779e
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Rakefile
Expand Up @@ -31,6 +31,16 @@ Rake::TestTask.new do |t|
t.test_files = FileList["test/{unit,functional}/**/test_*.rb"]
end

Rake::TestTask.new do |t|
t.name = :"test-all"
t.test_files = FileList["test/{unit,functional,network}/**/test_*.rb"]
end

Rake::TestTask.new do |t|
t.name = :"test-network"
t.test_files = FileList["test/network/**/test_*.rb"]
end

# files not included in gem but included in tar archive
tar_additional_files = []

Expand Down

0 comments on commit 688779e

Please sign in to comment.