aboutsummaryrefslogtreecommitdiffstats
path: root/Rakefile
diff options
context:
space:
mode:
authorTeddy Wing2015-12-08 01:36:10 -0500
committerTeddy Wing2015-12-08 01:36:10 -0500
commit6f4e62ff0f3c21807afbc7e1c7a62f0dadadde00 (patch)
treec59a2ec5535dd203c93d06ce50da5e3a2e367ff6 /Rakefile
parent82b084abc25656398d895e690f62ccde42f2257d (diff)
downloadRuby-Web-Sessions-Exercise-6f4e62ff0f3c21807afbc7e1c7a62f0dadadde00.tar.bz2
Add Rakefile from branch 'solution'
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile
new file mode 100644
index 0000000..4308fd1
--- /dev/null
+++ b/Rakefile
@@ -0,0 +1,9 @@
+require 'rake/testtask'
+
+Rake::TestTask.new do |t|
+ t.libs << '.'
+ t.libs << 'test'
+ t.pattern = 'test/**/*_test.rb'
+end
+
+task :default => :test