Sha256: 975574e0bcc9bb0a740bcb732bf069f92870f6ae3fad30d09444580686361747

Contents?: true

Size: 618 Bytes

Versions: 1

Compression:

Stored size: 618 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: "test:coverage:run"

desc "Runs mutation metric for testing"
task :mutant do
  system "bundle exec mutant -r informator --use rspec Informator* --fail-fast"
end

desc "Exhort all evils"
task :mutant do
  system "bundle exec mutant -r informator --use rspec Informator*"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
informator-0.1.0 Rakefile