Skip to content
This repository has been archived by the owner on Dec 31, 2020. It is now read-only.

Commit

Permalink
Setup MiniTest::Spec
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Conway committed May 30, 2012
1 parent 24082ef commit 2331c69
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Rakefile
@@ -1,2 +1,12 @@
#!/usr/bin/env rake
require "bundler/gem_tasks"

require 'rake/testtask'

Rake::TestTask.new do |t|
t.libs.push "lib"
t.test_files = FileList['spec/*_spec.rb']
t.verbose = true
end

task :default => [:test]
1 change: 1 addition & 0 deletions spec/spec_helper.rb
@@ -0,0 +1 @@
require 'minitest/autorun'

0 comments on commit 2331c69

Please sign in to comment.