summaryrefslogtreecommitdiffstats
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
parent557be9d4c5332cc6fde94e1119b8e725ef285234 (diff)
downloadpuppet-415663bb3ddbaa83c937c7acbf2babe7d30923da.tar.gz
puppet-415663bb3ddbaa83c937c7acbf2babe7d30923da.tar.xz
puppet-415663bb3ddbaa83c937c7acbf2babe7d30923da.zip
Added simple rake task for running unit tests
-rw-r--r--CHANGELOG2
-rw-r--r--Rakefile5
2 files changed, 7 insertions, 0 deletions
diff --git a/CHANGELOG b/CHANGELOG
index cc18f29fe..22bc7d896 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,4 +1,6 @@
0.24.x
+ Added simple rake task for running unit tests
+
Added spec Rake task
Fixed #1526 - Fixed leak in template
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