Skip to content

Commit

Permalink
rake test
Browse files Browse the repository at this point in the history
  • Loading branch information
csquared committed Apr 12, 2012
1 parent af915c2 commit ba9ce3d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions Gemfile
Expand Up @@ -4,6 +4,7 @@ source 'https://rubygems.org'
gemspec

group :test do
gem 'rake'
gem 'rr'
gem 'turn'
gem 'webmock'
Expand Down
9 changes: 9 additions & 0 deletions Rakefile
@@ -1,2 +1,11 @@
#!/usr/bin/env rake
require "bundler/gem_tasks"
require 'rake/testtask'

Rake::TestTask.new do |t|
t.libs << "test"
t.test_files = FileList['test/*_test.rb']
t.verbose = true
end

task :default => :test

0 comments on commit ba9ce3d

Please sign in to comment.