diff options
| author | mo k <mo@mokhan.ca> | 2012-03-04 14:01:50 -0700 |
|---|---|---|
| committer | mo k <mo@mokhan.ca> | 2012-03-04 14:01:50 -0700 |
| commit | 699e75a30312898ae23d6ed288a255a4a0c29dcc (patch) | |
| tree | 43bde68e8a02e4b45e34e8555538491db0d9527e | |
| parent | b0015bc76314e3ef44350ab3bc79cc0397c97dc5 (diff) | |
add rake file with targets for :unit, :integration tests.
| -rw-r--r-- | rakefile | 10 |
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 |
