summaryrefslogtreecommitdiff
path: root/rake_tasks/test.rake
diff options
context:
space:
mode:
authormurphy <murphy@rubychan.de>2006-07-10 00:32:57 +0000
committermurphy <murphy@rubychan.de>2006-07-10 00:32:57 +0000
commit9f4c7ab7553f9be7c9d14da0ba7462ad746c2f5d (patch)
tree686ee95cc9010314278846936476d1cf0bf04353 /rake_tasks/test.rake
parent42436798565c36a7d9582fcf587946d273083ab1 (diff)
downloadcoderay-9f4c7ab7553f9be7c9d14da0ba7462ad746c2f5d.tar.gz
Big re-indenting - no more tabs!
Diffstat (limited to 'rake_tasks/test.rake')
-rw-r--r--rake_tasks/test.rake16
1 files changed, 8 insertions, 8 deletions
diff --git a/rake_tasks/test.rake b/rake_tasks/test.rake
index 9a60c6b..0808edb 100644
--- a/rake_tasks/test.rake
+++ b/rake_tasks/test.rake
@@ -1,13 +1,13 @@
namespace :test do
- desc 'Test CodeRay Demos'
- task :demos do
- system 'ruby -wd ./demo/suite.rb'
- end
+ desc 'Test CodeRay Demos'
+ task :demos do
+ system 'ruby -wd ./demo/suite.rb'
+ end
- desc 'Test CodeRay'
- task :scanners do
- system 'ruby -w ./test/suite.rb'
- end
+ desc 'Test CodeRay'
+ task :scanners do
+ system 'ruby -w ./test/suite.rb'
+ end
end
task :test => 'test:scanners'