multi_test 0.1.0 → 0.1.1

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
  SHA1:
3
- metadata.gz: d0afef8f6d5935c731cc77f5ce62112900f7f267
4
- data.tar.gz: 01f9568a08b9855e9cf1c90ef72a2f17a39d54a3
3
+ metadata.gz: 3b41bc5c7a1128a8567dcd787eff96aa80e5fcf2
4
+ data.tar.gz: 7b42079c4ae326e285f9af1e6ffb6752990f3161
5
5
  SHA512:
6
- metadata.gz: afbb8a2df72e7fa5804ed0da863d674aa3cfb86fd63c3d4f69fea55034ee79aa8ad17c3aede614d13063585cc3d75c9eefbd44c9b3b23263ff15fc1b3b0a8417
7
- data.tar.gz: c2c59790170b596573f972cd5175104d31bbc134cfc9ae92933feeec2c35db9d837455b04f763c1ec365b428bb5e0066620784a4bff72fe7059f3ca482619306
6
+ metadata.gz: 6fe478e631ef9c0b16f756e653968969540440c4edba9b39985886764ba072628768792f96ce82ae0026ce2329d73a20c586a683c9caf3405bbca0897bf51e14
7
+ data.tar.gz: 1434199312ba7b4c27c9c2613a6f169c5e1936670e16c3e1a3ec0fce753414dc98a08f7ae47d1d458d6de8b5d734484cdc3e8eb003f34b570be0fd93b8f27356
@@ -30,7 +30,7 @@ module MultiTest
30
30
  @available ||= [
31
31
  AssertionLibrary.new(
32
32
  proc { require 'rspec/expectations' },
33
- proc { |object| object.extend(::RSpec::Matchers) },
33
+ proc { |object| object.extend(::RSpec::Matchers) }
34
34
  ),
35
35
  AssertionLibrary.new(
36
36
  proc {
@@ -42,19 +42,19 @@ module MultiTest
42
42
  options = OpenStruct.new(:diff_format => :unified, :context_lines => 3)
43
43
  Spec::Expectations.differ = Spec::Expectations::Differs::Default.new(options)
44
44
  object.extend(Spec::Matchers)
45
- },
45
+ }
46
46
  ),
47
47
  AssertionLibrary.new(
48
48
  proc { require 'minitest/assertions' },
49
- proc { |object| object.extend(MinitestWorld) },
49
+ proc { |object| object.extend(MinitestWorld) }
50
50
  ),
51
51
  AssertionLibrary.new(
52
52
  proc { require 'minitest/unit' },
53
- proc { |object| object.extend(MiniTest::Assertions) },
53
+ proc { |object| object.extend(MiniTest::Assertions) }
54
54
  ),
55
55
  AssertionLibrary.new(
56
56
  proc { require 'test/unit/assertions' },
57
- proc { |object| object.extend(Test::Unit::Assertions) },
57
+ proc { |object| object.extend(Test::Unit::Assertions) }
58
58
  ),
59
59
  ]
60
60
  end
@@ -3,7 +3,7 @@ $LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = 'multi_test'
6
- s.version = '0.1.0'
6
+ s.version = '0.1.1'
7
7
  s.authors = ["Matt Wynne", "Steve Tooke"]
8
8
  s.description = 'Wafter-thin gem to help control rogue test/unit/autorun requires'
9
9
  s.summary = "multi-test-#{s.version}"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: multi_test
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Wynne
@@ -95,7 +95,7 @@ rubyforge_project:
95
95
  rubygems_version: 2.2.0
96
96
  signing_key:
97
97
  specification_version: 4
98
- summary: multi-test-0.1.0
98
+ summary: multi-test-0.1.1
99
99
  test_files:
100
100
  - test/README.md
101
101
  - test/all