Skip to content
hopsoft edited this page Nov 17, 2014 · 8 revisions

Creating a Rake task to run tests is pretty simple. Just update your Rakefile.

require "bundler/gem_tasks"

task :test do
  exec "bundle exec pry-test"
end

task :default => :test
Clone this wiki locally