Sha256: f7aaf00a2a74415cd52b918b72ed3e2b48be995a21943e7940c8964bfa7cf666
Contents?: true
Size: 510 Bytes
Versions: 1
Compression:
Stored size: 510 Bytes
Contents
# encoding: utf-8 require "rubygems" require "bundler/setup" # 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 do system "bundle exec rspec spec" end desc "Runs mutation metric for testing" task :mutant do system "mutant -r ./spec/spec_helper --use rspec 'Assertion*'" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
assertion-0.2.3 | Rakefile |