mutant 0.13.3 → 0.13.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cd7f4201e2080fae1934f85a187eab4b2a4b9ec5efcb27a016813652b1cc63ea
4
- data.tar.gz: 328b241211597cd71111404f9c86108177c3e128bc096673e97ab2661625254f
3
+ metadata.gz: 75662c8a4062a633ec556db2c2365e27202e9087227166cbd790daa6ff72c8b3
4
+ data.tar.gz: 82a4648bc701a56dda880e9a758c08f9d4e53196e59f9c1976e364674ecb9099
5
5
  SHA512:
6
- metadata.gz: 79da414698d7fdd4d7be9e5cc1b0023d11810d202d921cf53d6822b04d6e668e7ba168a6c92a758179e9fcdd6879dc9f25f282b77614249d8e4d26489be7af58
7
- data.tar.gz: 39505a9ad471705722cf3f0ca24cc78a3133dca8631178fbac5fe4f40397fde49d30d1fe1f4f4169c90fd138d5f6aa335d219cd81631a87ff7d488d81c222031
6
+ metadata.gz: 68108911058155f67b9a0c44c1e04a5e361eb9057442a0b1d8447438330995abe6fb66e48c81d622b09e198cc0b8a4500233af9a20d2548b042c6231a1a95223
7
+ data.tar.gz: b5c7b0d525407dcaeac02cd31e56a5e9d14ecc77def1711dfb115a5ed03163c204407cebbbcbda640c28024764c71c720745dffd224179477dc714d6603dabe3
@@ -63,8 +63,9 @@ module Mutant
63
63
  # @return [Either<String, Env>]
64
64
  def self.call_test(env)
65
65
  env.record(:bootstrap) do
66
+ env = load_hooks(env).tap(&method(:infect))
66
67
  setup_integration(
67
- env: load_hooks(env),
68
+ env: env,
68
69
  mutations: [],
69
70
  selected_subjects: []
70
71
  )
@@ -84,7 +84,6 @@ module Mutant
84
84
  )
85
85
  end
86
86
 
87
- # rubocop:disable Naming/PredicateMethod
88
87
  def fail_message(message)
89
88
  world.stderr.puts(message)
90
89
  false
@@ -5,6 +5,7 @@ module Mutant
5
5
  # Abstract base class for expressions matching namespaces
6
6
  class Namespace < self
7
7
  include AbstractType, Anima.new(:scope_name)
8
+
8
9
  private(*anima.attribute_names)
9
10
 
10
11
  # Recursive namespace expression
@@ -16,6 +16,7 @@ module Mutant
16
16
  # Result of operation that may time out
17
17
  class Result
18
18
  include Equalizer.new(:value)
19
+
19
20
  attr_reader :value
20
21
 
21
22
  # Initialize result
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Mutant
4
4
  # Current mutant version
5
- VERSION = '0.13.3'
5
+ VERSION = '0.13.4'
6
6
  end # Mutant
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mutant
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.3
4
+ version: 0.13.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Markus Schirp