fivemat 1.3.1 → 1.3.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/fivemat.gemspec +1 -1
- data/lib/fivemat.rb +2 -1
- data/lib/fivemat/rspec.rb +3 -0
- data/lib/fivemat/rspec3.rb +4 -0
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b71e93a7338aad14b7d10c8b504f18ff9cbee45c
|
4
|
+
data.tar.gz: d0b1fe399129300fc4478717855b98b4af9b5f92
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 31b3e0f3d1a5f06d7cc2f86484cb45d9e74002e2f976337794c408658c8075a04b04c02003affe4f7f372022c0930dd3f63ca4dee795096f622ccc557e8d906a
|
7
|
+
data.tar.gz: d15800ba2a4ab9686286eac725c65d1c825e988a3bc1af83c4eb9773de47602d71c03b37858e3a500878cfe36f40d8b508fb555f90313f753c379ad4e0daae92
|
data/fivemat.gemspec
CHANGED
data/lib/fivemat.rb
CHANGED
data/lib/fivemat/rspec.rb
CHANGED
@@ -43,6 +43,9 @@ module Fivemat
|
|
43
43
|
def pending_fixed?(example)
|
44
44
|
if example.execution_result[:exception].respond_to?(:pending_fixed?)
|
45
45
|
example.execution_result[:exception].pending_fixed?
|
46
|
+
elsif defined?(::RSpec::Core::Pending::PendingExampleFixedError)
|
47
|
+
# RSpec 2.99.2 compatibility
|
48
|
+
::RSpec::Core::Pending::PendingExampleFixedError == example.execution_result[:exception]
|
46
49
|
else
|
47
50
|
::RSpec::Core::PendingExampleFixedError === example.execution_result[:exception]
|
48
51
|
end
|
data/lib/fivemat/rspec3.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fivemat
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tim Pope
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2015-10-20 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: MiniTest/RSpec/Cucumber formatter that gives each test file its own line
|
14
14
|
of dots
|
@@ -18,7 +18,7 @@ executables: []
|
|
18
18
|
extensions: []
|
19
19
|
extra_rdoc_files: []
|
20
20
|
files:
|
21
|
-
- .gitignore
|
21
|
+
- ".gitignore"
|
22
22
|
- Gemfile
|
23
23
|
- LICENSE
|
24
24
|
- MIT-LICENSE
|
@@ -44,17 +44,17 @@ require_paths:
|
|
44
44
|
- lib
|
45
45
|
required_ruby_version: !ruby/object:Gem::Requirement
|
46
46
|
requirements:
|
47
|
-
- -
|
47
|
+
- - ">="
|
48
48
|
- !ruby/object:Gem::Version
|
49
49
|
version: '0'
|
50
50
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- -
|
52
|
+
- - ">="
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '0'
|
55
55
|
requirements: []
|
56
56
|
rubyforge_project:
|
57
|
-
rubygems_version: 2.
|
57
|
+
rubygems_version: 2.4.5
|
58
58
|
signing_key:
|
59
59
|
specification_version: 4
|
60
60
|
summary: Why settle for a test output format when you could have a test output fivemat?
|