mutant 0.6.4 → 0.6.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Changelog.md +5 -1
- data/lib/mutant/isolation.rb +2 -1
- data/lib/mutant/version.rb +1 -1
- data/spec/integration/mutant/rspec_spec.rb +8 -2
- data/test_app/{Gemfile.rspec3 → Gemfile.rspec3.0} +0 -0
- data/test_app/Gemfile.rspec3.1 +5 -0
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: adcae01356f50d7189c8965ae495530cc0ad994e
|
4
|
+
data.tar.gz: d6816c3ea9d5f2c47faa6fa6f6dbab79495ef327
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c67496fe405ff7ff754cc5614a67518de4b633e18b22072a99ab9812d76c63016cf97ca88f1faa0ac9478fe1cea9fca04e1eebdf21a135f1755cc302fc694035
|
7
|
+
data.tar.gz: 1dbe0321e54c4bf8ccfaf531553133c966b6c22402e18b69cf064becd37c37023639a9e51253eccba71a5814d60f8883db16b4c3a0873ca8ab0536eba59fcfa5
|
data/Changelog.md
CHANGED
data/lib/mutant/isolation.rb
CHANGED
data/lib/mutant/version.rb
CHANGED
@@ -44,8 +44,14 @@ RSpec.describe 'rspec integration' do
|
|
44
44
|
it_behaves_like 'rspec integration'
|
45
45
|
end
|
46
46
|
|
47
|
-
context 'RSpec 3' do
|
48
|
-
let(:gemfile) { 'Gemfile.rspec3' }
|
47
|
+
context 'RSpec 3.0' do
|
48
|
+
let(:gemfile) { 'Gemfile.rspec3.0' }
|
49
|
+
|
50
|
+
it_behaves_like 'rspec integration'
|
51
|
+
end
|
52
|
+
|
53
|
+
context 'RSpec 3.1' do
|
54
|
+
let(:gemfile) { 'Gemfile.rspec3.1' }
|
49
55
|
|
50
56
|
it_behaves_like 'rspec integration'
|
51
57
|
end
|
File without changes
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mutant
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Markus Schirp
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-10-
|
11
|
+
date: 2014-10-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: parser
|
@@ -507,7 +507,8 @@ files:
|
|
507
507
|
- test_app/.rspec
|
508
508
|
- test_app/Gemfile.devtools
|
509
509
|
- test_app/Gemfile.rspec2
|
510
|
-
- test_app/Gemfile.rspec3
|
510
|
+
- test_app/Gemfile.rspec3.0
|
511
|
+
- test_app/Gemfile.rspec3.1
|
511
512
|
- test_app/lib/test_app.rb
|
512
513
|
- test_app/lib/test_app/literal.rb
|
513
514
|
- test_app/spec/spec_helper.rb
|