summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorLee Jarvis <lee@jarvis.co>2011-03-16 20:43:50 +0000
committerLee Jarvis <lee@jarvis.co>2011-03-16 20:43:50 +0000
commit9b80b2ebb2d88a3be259ad5017e54a4b0c5fb39a (patch)
tree3c2fcd09ab5d601d08a61cdc1585629840cfba88 /Rakefile
parentbaa2384af08068407110e62ae545a1b0e9151e22 (diff)
downloadslop-9b80b2ebb2d88a3be259ad5017e54a4b0c5fb39a.tar.gz
run tests by default
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index acbc1e5..2029133 100644
--- a/Rakefile
+++ b/Rakefile
@@ -4,4 +4,6 @@ task :test do
require 'minitest/autorun'
begin; require 'turn'; rescue LoadError; end
Dir.glob("test/**/*_test.rb").each { |test| require_relative test }
-end \ No newline at end of file
+end
+
+task :default => :test \ No newline at end of file