summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorKevin Thompson <kevin@kevinthompson.info>2012-12-16 23:47:00 -0800
committerDaniel Beauchamp <daniel.beauchamp@shopify.com>2012-12-24 23:23:04 -0500
commit27338212e6347bebed1cbf08963a9af110368b76 (patch)
tree468615cd617d1519fd1a698e594b5affd9e6deda /Rakefile
parentefc78f648a76ccc9421e3fc0a16e9f6c6448b346 (diff)
Establish test suite.
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile
new file mode 100644
index 0000000..765e5bd
--- /dev/null
+++ b/Rakefile
@@ -0,0 +1,10 @@
+require 'rubygems'
+require 'rake'
+
+require 'rake/testtask'
+Rake::TestTask.new(:test) do |test|
+ test.libs << 'lib' << 'test'
+ test.pattern = 'test/**/*_test.rb'
+end
+
+task :default => [:test] \ No newline at end of file