Sha256: 8f2842110e465ef95d93e1edb28af4b3b5b3a876c771ff11c91e7309e5ce742a
Contents?: true
Size: 600 Bytes
Versions: 4
Compression:
Stored size: 600 Bytes
Contents
# encoding: utf-8 begin require "bundler/setup" rescue LoadError puts "You must `gem install bundler` and `bundle install` to run rake tasks" exit end # Loads bundler tasks Bundler::GemHelper.install_tasks # Loads the Hexx::RSpec and its tasks begin require "hexx-suit" Hexx::Suit.install_tasks rescue LoadError require "hexx-rspec" Hexx::RSpec.install_tasks end # Sets the Hexx::RSpec :test task to default task default: "test:coverage:run" desc "Runs mutation metric for testing" task :mutant do system "mutant -r spec/spec_helper --use rspec <%= namespace %>* --fail-fast" end
Version data entries
4 entries across 4 versions & 1 rubygems