summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormo k <mo@mokhan.ca>2012-03-04 14:01:50 -0700
committermo k <mo@mokhan.ca>2012-03-04 14:01:50 -0700
commit699e75a30312898ae23d6ed288a255a4a0c29dcc (patch)
tree43bde68e8a02e4b45e34e8555538491db0d9527e
parentb0015bc76314e3ef44350ab3bc79cc0397c97dc5 (diff)
add rake file with targets for :unit, :integration tests.
-rw-r--r--rakefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/rakefile b/rakefile
new file mode 100644
index 0000000..f743858
--- /dev/null
+++ b/rakefile
@@ -0,0 +1,10 @@
+
+task :default => [:unit, :integration]
+
+task :unit do
+ sh "ruby spec/unit/all.rb"
+end
+
+task :integration do
+ sh "bacon spec/integration/all.rb"
+end