minitest-matchers 1.0.0 → 1.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +12 -0
- data/lib/minitest/matchers.rb +23 -19
- metadata +5 -5
data/History.txt
CHANGED
data/lib/minitest/matchers.rb
CHANGED
@@ -1,20 +1,22 @@
|
|
1
1
|
require "minitest/spec"
|
2
2
|
|
3
3
|
module MiniTest::Matchers
|
4
|
-
VERSION = "1.0.
|
4
|
+
VERSION = "1.0.2"
|
5
5
|
|
6
6
|
def must &block
|
7
7
|
matcher = yield
|
8
8
|
check_matcher matcher
|
9
9
|
|
10
|
-
failure_message = if matcher.respond_to? :failure_message
|
11
|
-
matcher.failure_message
|
12
|
-
else
|
13
|
-
"expected to " + matcher.description
|
14
|
-
end
|
15
|
-
|
16
10
|
it "must #{matcher.description}" do
|
17
|
-
|
11
|
+
result = matcher.matches? subject
|
12
|
+
|
13
|
+
failure_message = if matcher.respond_to? :failure_message
|
14
|
+
matcher.failure_message
|
15
|
+
else
|
16
|
+
"expected to " + matcher.description
|
17
|
+
end
|
18
|
+
|
19
|
+
assert result, failure_message
|
18
20
|
end
|
19
21
|
|
20
22
|
matcher
|
@@ -24,18 +26,20 @@ module MiniTest::Matchers
|
|
24
26
|
matcher = yield
|
25
27
|
check_matcher matcher
|
26
28
|
|
27
|
-
failure_message = if matcher.respond_to? :negative_failure_message
|
28
|
-
matcher.negative_failure_message
|
29
|
-
else
|
30
|
-
"expected not to " + matcher.description
|
31
|
-
end
|
32
|
-
|
33
29
|
it "wont #{matcher.description}" do
|
34
|
-
if matcher.respond_to? :does_not_match
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
30
|
+
result = if matcher.respond_to? :does_not_match?
|
31
|
+
result = matcher.does_not_match?(subject)
|
32
|
+
else
|
33
|
+
result = !matcher.matches?(subject)
|
34
|
+
end
|
35
|
+
|
36
|
+
failure_message = if matcher.respond_to? :negative_failure_message
|
37
|
+
matcher.negative_failure_message
|
38
|
+
else
|
39
|
+
"expected not to " + matcher.description
|
40
|
+
end
|
41
|
+
|
42
|
+
assert result, failure_message
|
39
43
|
end
|
40
44
|
|
41
45
|
matcher
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: minitest-matchers
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -14,7 +14,7 @@ date: 2011-09-04 00:00:00.000000000Z
|
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: minitest
|
17
|
-
requirement: &
|
17
|
+
requirement: &2152131540 !ruby/object:Gem::Requirement
|
18
18
|
none: false
|
19
19
|
requirements:
|
20
20
|
- - ~>
|
@@ -22,10 +22,10 @@ dependencies:
|
|
22
22
|
version: '1.6'
|
23
23
|
type: :development
|
24
24
|
prerelease: false
|
25
|
-
version_requirements: *
|
25
|
+
version_requirements: *2152131540
|
26
26
|
- !ruby/object:Gem::Dependency
|
27
27
|
name: hoe
|
28
|
-
requirement: &
|
28
|
+
requirement: &2152130120 !ruby/object:Gem::Requirement
|
29
29
|
none: false
|
30
30
|
requirements:
|
31
31
|
- - ~>
|
@@ -33,7 +33,7 @@ dependencies:
|
|
33
33
|
version: '2.12'
|
34
34
|
type: :development
|
35
35
|
prerelease: false
|
36
|
-
version_requirements: *
|
36
|
+
version_requirements: *2152130120
|
37
37
|
description: ! 'minitest-matchers adds support for RSpec/Shoulda-style matchers to
|
38
38
|
|
39
39
|
MiniTest::Spec.
|