1

「hexx-null」gemにはファイルがあります:

# lib/hexx/null.rb
module Hexx
  class Null
    # ...
  end
end

RSpec 仕様ファイルは次のとおりです。

# spec/tests/null_spec.rb
describe Hexx::Null do

  describe ".new" do
    # ...
  end

  # ... etc.
end

次に、gem ルートからミュータントを実行します。

$ mutant --include lib --require hexx-null --use rspec Hexx::Null

結果は次のとおりです。

Mutant configuration:
Matcher:         #<Mutant::Matcher::Config match_expressions=[<Mutant::Expression: Hexx::Null>] subject_ignores=[] subject_selects=[]>
Integration:     rspec
Expect Coverage: 100.00%
Jobs:            8
Includes:        ["lib"]
Requires:        ["hexx-null"]
Subjects:        0
Mutations:       0
Kills:           0
Alive:           0
Runtime:         0.05s
Killtime:        0.00s
Overhead:        Inf%
Coverage:        0.00%
Expected:        100.00%
Active subjects: 0

ミュータントは例を見つけられないようですが、なぜですか?

4

0 に答える 0