diff options
author | Leon Breedt <bitserf@gmail.com> | 2005-02-20 01:07:54 +0000 |
---|---|---|
committer | Leon Breedt <bitserf@gmail.com> | 2005-02-20 01:07:54 +0000 |
commit | 6a7fc51c6675786f4791c45edc1fac42ea6e3df9 (patch) | |
tree | 6d2d97d6779d19f05b80ec4519254bd5bb79004a /actionwebservice/test | |
parent | acb3d2cf755d6be35527d2ece57a5de415bb6cab (diff) | |
download | rails-6a7fc51c6675786f4791c45edc1fac42ea6e3df9.tar.gz rails-6a7fc51c6675786f4791c45edc1fac42ea6e3df9.tar.bz2 rails-6a7fc51c6675786f4791c45edc1fac42ea6e3df9.zip |
add code coverage testing scripts, remove dead code
detected by said scripts
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@708 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionwebservice/test')
-rwxr-xr-x | actionwebservice/test/gencov | 3 | ||||
-rwxr-xr-x | actionwebservice/test/run | 5 |
2 files changed, 8 insertions, 0 deletions
diff --git a/actionwebservice/test/gencov b/actionwebservice/test/gencov new file mode 100755 index 0000000000..144233107a --- /dev/null +++ b/actionwebservice/test/gencov @@ -0,0 +1,3 @@ +#!/bin/sh + +rcov -x '.*_test\.rb,rubygems,abstract_,/run' ./run diff --git a/actionwebservice/test/run b/actionwebservice/test/run new file mode 100755 index 0000000000..5c6f8b2bc2 --- /dev/null +++ b/actionwebservice/test/run @@ -0,0 +1,5 @@ +#!/usr/bin/env ruby + +Dir[File.join(File.dirname(__FILE__), '*_test.rb')].each do |f| + require f +end |