Sha256: 020510e466798381e51528f221c83d6a9e5417743ed4a0e9c7e49b2c87b2cd3f

Contents?: true

Size: 618 Bytes

Versions: 4

Compression:

Stored size: 618 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 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*' --fail-fast"
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
assertion-0.2.1 Rakefile
assertion-0.2.0 Rakefile
assertion-0.1.0 Rakefile
assertion-0.0.1 Rakefile