summaryrefslogtreecommitdiffstats
path: root/Rakefile
diff options
context:
space:
mode:
authorJames Turnbull <james@lovedthanlost.net>2008-08-24 10:47:42 +1000
committerJames Turnbull <james@lovedthanlost.net>2008-08-24 10:47:42 +1000
commit415663bb3ddbaa83c937c7acbf2babe7d30923da (patch)
treebe2708c15d7f1c5012126c9512d29ef1dc4c10c4 /Rakefile
parent557be9d4c5332cc6fde94e1119b8e725ef285234 (diff)
Added simple rake task for running unit tests
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile
index e35368a53..bcc524151 100644
--- a/Rakefile
+++ b/Rakefile
@@ -156,3 +156,8 @@ task :spec do
t.spec_files = FileList['spec/**/*.rb']
end
end
+
+desc "Run the unit tests"
+task :unit do
+ sh "cd test; rake"
+end