assert 2.18.2 → 2.19.2
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 +4 -4
- data/Gemfile +4 -2
- data/README.md +7 -6
- data/assert.gemspec +5 -2
- data/bin/assert +1 -0
- data/lib/assert.rb +2 -0
- data/lib/assert/actual_value.rb +143 -0
- data/lib/assert/assert_runner.rb +2 -0
- data/lib/assert/assertions.rb +82 -20
- data/lib/assert/cli.rb +2 -0
- data/lib/assert/config.rb +2 -0
- data/lib/assert/config_helpers.rb +2 -0
- data/lib/assert/context.rb +33 -37
- data/lib/assert/context/let_dsl.rb +16 -0
- data/lib/assert/context/method_missing.rb +22 -0
- data/lib/assert/context/setup_dsl.rb +3 -0
- data/lib/assert/context/subject_dsl.rb +26 -24
- data/lib/assert/context/suite_dsl.rb +3 -0
- data/lib/assert/context/test_dsl.rb +3 -0
- data/lib/assert/context_info.rb +2 -0
- data/lib/assert/default_runner.rb +2 -0
- data/lib/assert/default_suite.rb +2 -0
- data/lib/assert/default_view.rb +2 -0
- data/lib/assert/factory.rb +2 -0
- data/lib/assert/file_line.rb +2 -0
- data/lib/assert/macro.rb +2 -0
- data/lib/assert/macros/methods.rb +6 -4
- data/lib/assert/result.rb +8 -1
- data/lib/assert/runner.rb +2 -0
- data/lib/assert/stub.rb +45 -0
- data/lib/assert/suite.rb +9 -10
- data/lib/assert/test.rb +3 -9
- data/lib/assert/utils.rb +3 -1
- data/lib/assert/version.rb +3 -1
- data/lib/assert/view.rb +2 -0
- data/lib/assert/view_helpers.rb +2 -0
- data/test/helper.rb +28 -28
- data/test/support/factory.rb +17 -0
- data/test/support/inherited_stuff.rb +2 -0
- data/test/system/stub_tests.rb +334 -333
- data/test/system/test_tests.rb +101 -109
- data/test/unit/actual_value_tests.rb +373 -0
- data/test/unit/assert_tests.rb +79 -61
- data/test/unit/assertions/assert_block_tests.rb +32 -31
- data/test/unit/assertions/assert_changes_tests.rb +99 -0
- data/test/unit/assertions/assert_empty_tests.rb +35 -32
- data/test/unit/assertions/assert_equal_tests.rb +96 -74
- data/test/unit/assertions/assert_file_exists_tests.rb +34 -33
- data/test/unit/assertions/assert_includes_tests.rb +40 -37
- data/test/unit/assertions/assert_instance_of_tests.rb +36 -33
- data/test/unit/assertions/assert_kind_of_tests.rb +36 -33
- data/test/unit/assertions/assert_match_tests.rb +36 -33
- data/test/unit/assertions/assert_nil_tests.rb +32 -31
- data/test/unit/assertions/assert_raises_tests.rb +57 -55
- data/test/unit/assertions/assert_respond_to_tests.rb +38 -35
- data/test/unit/assertions/assert_same_tests.rb +88 -81
- data/test/unit/assertions/assert_true_false_tests.rb +62 -60
- data/test/unit/assertions_tests.rb +28 -24
- data/test/unit/config_helpers_tests.rb +45 -38
- data/test/unit/config_tests.rb +40 -34
- data/test/unit/context/let_dsl_tests.rb +12 -0
- data/test/unit/context/setup_dsl_tests.rb +72 -81
- data/test/unit/context/subject_dsl_tests.rb +17 -43
- data/test/unit/context/suite_dsl_tests.rb +17 -16
- data/test/unit/context/test_dsl_tests.rb +52 -52
- data/test/unit/context_info_tests.rb +25 -15
- data/test/unit/context_tests.rb +186 -179
- data/test/unit/default_runner_tests.rb +4 -5
- data/test/unit/default_suite_tests.rb +59 -53
- data/test/unit/factory_tests.rb +7 -3
- data/test/unit/file_line_tests.rb +35 -35
- data/test/unit/macro_tests.rb +16 -10
- data/test/unit/result_tests.rb +161 -183
- data/test/unit/runner_tests.rb +67 -65
- data/test/unit/suite_tests.rb +58 -59
- data/test/unit/test_tests.rb +120 -139
- data/test/unit/utils_tests.rb +45 -45
- data/test/unit/view_helpers_tests.rb +56 -52
- data/test/unit/view_tests.rb +24 -23
- metadata +29 -6
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require "assert"
|
2
4
|
require "assert/assertions"
|
3
5
|
|
@@ -8,32 +10,35 @@ module Assert::Assertions
|
|
8
10
|
include Assert::Test::TestHelpers
|
9
11
|
|
10
12
|
desc "`assert_same`"
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
@test = Factory.test do
|
13
|
+
subject {
|
14
|
+
args = args1
|
15
|
+
object = object1
|
16
|
+
Factory.test do
|
16
17
|
assert_same(object, object) # pass
|
17
18
|
assert_same(*args) # fail
|
18
19
|
end
|
19
|
-
|
20
|
-
@test.run(&test_run_callback)
|
21
|
-
end
|
22
|
-
subject{ @test }
|
20
|
+
}
|
23
21
|
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
22
|
+
let(:class1) { Class.new }
|
23
|
+
let(:object1) { class1.new }
|
24
|
+
let(:desc1) { "assert same fail desc" }
|
25
|
+
let(:args1) { [object1, class1.new, desc1] }
|
26
|
+
let(:config1) { subject.config }
|
29
27
|
|
30
|
-
should "
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
28
|
+
should "produce results as expected" do
|
29
|
+
subject.run(&test_run_callback)
|
30
|
+
|
31
|
+
assert_that(test_run_result_count).equals(2)
|
32
|
+
assert_that(test_run_result_count(:pass)).equals(1)
|
33
|
+
assert_that(test_run_result_count(:fail)).equals(1)
|
34
|
+
|
35
|
+
exp =
|
36
|
+
"#{args1[2]}\n"\
|
37
|
+
"Expected #{Assert::U.show(args1[1], config1)}"\
|
38
|
+
" (#<#{args1[1].class}:#{"0x0%x" % (args1[1].object_id << 1)}>)"\
|
39
|
+
" to be the same as #{Assert::U.show(args1[0], config1)}"\
|
40
|
+
" (#<#{args1[0].class}:#{"0x0%x" % (args1[0].object_id << 1)}>)."
|
41
|
+
assert_that(test_run_results(:fail).first.message).equals(exp)
|
37
42
|
end
|
38
43
|
end
|
39
44
|
|
@@ -41,32 +46,36 @@ module Assert::Assertions
|
|
41
46
|
include Assert::Test::TestHelpers
|
42
47
|
|
43
48
|
desc "`assert_not_same`"
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
+
subject {
|
50
|
+
args = args1
|
51
|
+
object = object1
|
52
|
+
klass = class1
|
53
|
+
Factory.test do
|
49
54
|
assert_not_same(*args) # fail
|
50
55
|
assert_not_same(object, klass.new) # pass
|
51
56
|
end
|
52
|
-
|
53
|
-
@test.run(&test_run_callback)
|
54
|
-
end
|
55
|
-
subject{ @test }
|
57
|
+
}
|
56
58
|
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
59
|
+
let(:class1) { Class.new }
|
60
|
+
let(:object1) { class1.new }
|
61
|
+
let(:desc1) { "assert not same fail desc" }
|
62
|
+
let(:args1) { [object1, object1, desc1] }
|
63
|
+
let(:config1) { subject.config }
|
62
64
|
|
63
|
-
should "
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
65
|
+
should "produce results as expected" do
|
66
|
+
subject.run(&test_run_callback)
|
67
|
+
|
68
|
+
assert_that(test_run_result_count).equals(2)
|
69
|
+
assert_that(test_run_result_count(:pass)).equals(1)
|
70
|
+
assert_that(test_run_result_count(:fail)).equals(1)
|
71
|
+
|
72
|
+
exp =
|
73
|
+
"#{args1[2]}\n"\
|
74
|
+
"Expected #{Assert::U.show(args1[1], config1)}"\
|
75
|
+
" (#<#{args1[1].class}:#{"0x0%x" % (args1[1].object_id << 1)}>)"\
|
76
|
+
" to not be the same as #{Assert::U.show(args1[0], config1)}"\
|
77
|
+
" (#<#{args1[0].class}:#{"0x0%x" % (args1[0].object_id << 1)}>)."
|
78
|
+
assert_that(test_run_results(:fail).first.message).equals(exp)
|
70
79
|
end
|
71
80
|
end
|
72
81
|
|
@@ -74,62 +83,60 @@ module Assert::Assertions
|
|
74
83
|
include Assert::Test::TestHelpers
|
75
84
|
|
76
85
|
desc "with objects that should use diff when showing"
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
@c.run_diff_proc(Assert::U.syscmd_diff_proc)
|
86
|
+
let(:config1) {
|
87
|
+
Factory.modes_off_config.tap do |config|
|
88
|
+
config.use_diff_proc(Assert::U.default_use_diff_proc)
|
89
|
+
config.run_diff_proc(Assert::U.syscmd_diff_proc)
|
90
|
+
end
|
91
|
+
}
|
84
92
|
|
85
|
-
|
86
|
-
|
87
|
-
|
93
|
+
let(:exp_obj1) { "I'm a\nstring" }
|
94
|
+
let(:act_obj1) { "I am a \nstring" }
|
95
|
+
let(:exp_obj_show1) { Assert::U.show_for_diff(exp_obj1, config1) }
|
96
|
+
let(:act_obj_show1) { Assert::U.show_for_diff(act_obj1, config1) }
|
88
97
|
end
|
89
98
|
|
90
99
|
class AssertSameDiffTests < DiffTests
|
91
100
|
desc "`assert_same`"
|
92
|
-
|
93
|
-
exp_obj, act_obj =
|
94
|
-
|
101
|
+
subject {
|
102
|
+
exp_obj, act_obj = exp_obj1, act_obj1
|
103
|
+
Factory.test(config1) do
|
95
104
|
assert_same(exp_obj, act_obj)
|
96
105
|
end
|
97
|
-
|
98
|
-
end
|
99
|
-
subject{ @test }
|
106
|
+
}
|
100
107
|
|
101
108
|
should "include diff output in the fail messages" do
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
109
|
+
subject.run(&test_run_callback)
|
110
|
+
|
111
|
+
exp =
|
112
|
+
"Expected #<#{act_obj1.class}:#{"0x0%x" % (act_obj1.object_id << 1)}>"\
|
113
|
+
" to be the same as"\
|
114
|
+
" #<#{exp_obj1.class}:#{"0x0%x" % (exp_obj1.object_id << 1)}>"\
|
115
|
+
", diff:\n"\
|
116
|
+
"#{Assert::U.syscmd_diff_proc.call(exp_obj_show1, act_obj_show1)}"
|
117
|
+
assert_that(test_run_results(:fail).first.message).equals(exp)
|
108
118
|
end
|
109
119
|
end
|
110
120
|
|
111
121
|
class AssertNotSameDiffTests < DiffTests
|
112
122
|
desc "`assert_not_same`"
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
exp_obj, act_obj = @exp_obj, @act_obj
|
118
|
-
@test = Factory.test(@c) do
|
119
|
-
assert_not_same(exp_obj, exp_obj)
|
123
|
+
subject {
|
124
|
+
act_obj = act_obj1
|
125
|
+
Factory.test(config1) do
|
126
|
+
assert_not_same(act_obj, act_obj)
|
120
127
|
end
|
121
|
-
|
122
|
-
end
|
123
|
-
subject{ @test }
|
128
|
+
}
|
124
129
|
|
125
130
|
should "include diff output in the fail messages" do
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
131
|
+
subject.run(&test_run_callback)
|
132
|
+
|
133
|
+
exp =
|
134
|
+
"Expected #<#{act_obj1.class}:#{"0x0%x" % (act_obj1.object_id << 1)}>"\
|
135
|
+
" to not be the same as"\
|
136
|
+
" #<#{act_obj1.class}:#{"0x0%x" % (act_obj1.object_id << 1)}>"\
|
137
|
+
", diff:\n"\
|
138
|
+
"#{Assert::U.syscmd_diff_proc.call(act_obj_show1, act_obj_show1)}"
|
139
|
+
assert_that(test_run_results(:fail).first.message).equals(exp)
|
132
140
|
end
|
133
141
|
end
|
134
142
|
end
|
135
|
-
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require "assert"
|
2
4
|
require "assert/assertions"
|
3
5
|
|
@@ -8,27 +10,27 @@ module Assert::Assertions
|
|
8
10
|
include Assert::Test::TestHelpers
|
9
11
|
|
10
12
|
desc "`assert_true`"
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
@test = Factory.test do
|
13
|
+
subject {
|
14
|
+
args = args1
|
15
|
+
Factory.test do
|
15
16
|
assert_true(true) # pass
|
16
17
|
assert_true(*args) # fail
|
17
18
|
end
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
19
|
+
}
|
20
|
+
|
21
|
+
let(:desc1) { "assert true fail desc" }
|
22
|
+
let(:args1) { ["whatever", desc1] }
|
23
|
+
let(:config1) { subject.config }
|
22
24
|
|
23
25
|
should "produce results as expected" do
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
26
|
+
subject.run(&test_run_callback)
|
27
|
+
|
28
|
+
assert_that(test_run_result_count).equals(2)
|
29
|
+
assert_that(test_run_result_count(:pass)).equals(1)
|
30
|
+
assert_that(test_run_result_count(:fail)).equals(1)
|
28
31
|
|
29
|
-
|
30
|
-
|
31
|
-
assert_equal exp, test_run_results(:fail).first.message
|
32
|
+
exp = "#{args1[1]}\nExpected #{Assert::U.show(args1[0], config1)} to be true."
|
33
|
+
assert_that(test_run_results(:fail).first.message).equals(exp)
|
32
34
|
end
|
33
35
|
end
|
34
36
|
|
@@ -36,27 +38,27 @@ module Assert::Assertions
|
|
36
38
|
include Assert::Test::TestHelpers
|
37
39
|
|
38
40
|
desc "`assert_not_true`"
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
@test = Factory.test do
|
41
|
+
subject {
|
42
|
+
args = args1
|
43
|
+
Factory.test do
|
43
44
|
assert_not_true(false) # pass
|
44
45
|
assert_not_true(*args) # fail
|
45
46
|
end
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
47
|
+
}
|
48
|
+
|
49
|
+
let(:desc1) { "assert not true fail desc" }
|
50
|
+
let(:args1) { [true, desc1] }
|
51
|
+
let(:config1) { subject.config }
|
50
52
|
|
51
53
|
should "produce results as expected" do
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
54
|
+
subject.run(&test_run_callback)
|
55
|
+
|
56
|
+
assert_that(test_run_result_count).equals(2)
|
57
|
+
assert_that(test_run_result_count(:pass)).equals(1)
|
58
|
+
assert_that(test_run_result_count(:fail)).equals(1)
|
56
59
|
|
57
|
-
|
58
|
-
|
59
|
-
assert_equal exp, test_run_results(:fail).first.message
|
60
|
+
exp = "#{args1[1]}\nExpected #{Assert::U.show(args1[0], config1)} to not be true."
|
61
|
+
assert_that(test_run_results(:fail).first.message).equals(exp)
|
60
62
|
end
|
61
63
|
end
|
62
64
|
|
@@ -64,27 +66,27 @@ module Assert::Assertions
|
|
64
66
|
include Assert::Test::TestHelpers
|
65
67
|
|
66
68
|
desc "`assert_false`"
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
@test = Factory.test do
|
69
|
+
subject {
|
70
|
+
args = args1
|
71
|
+
Factory.test do
|
71
72
|
assert_false(false) # pass
|
72
73
|
assert_false(*args) # fail
|
73
74
|
end
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
75
|
+
}
|
76
|
+
|
77
|
+
let(:desc1) { "assert false fail desc" }
|
78
|
+
let(:args1) { ["whatever", desc1] }
|
79
|
+
let(:config1) { subject.config }
|
78
80
|
|
79
81
|
should "produce results as expected" do
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
82
|
+
subject.run(&test_run_callback)
|
83
|
+
|
84
|
+
assert_that(test_run_result_count).equals(2)
|
85
|
+
assert_that(test_run_result_count(:pass)).equals(1)
|
86
|
+
assert_that(test_run_result_count(:fail)).equals(1)
|
84
87
|
|
85
|
-
|
86
|
-
|
87
|
-
assert_equal exp, test_run_results(:fail).first.message
|
88
|
+
exp = "#{args1[1]}\nExpected #{Assert::U.show(args1[0], config1)} to be false."
|
89
|
+
assert_that(test_run_results(:fail).first.message).equals(exp)
|
88
90
|
end
|
89
91
|
end
|
90
92
|
|
@@ -92,27 +94,27 @@ module Assert::Assertions
|
|
92
94
|
include Assert::Test::TestHelpers
|
93
95
|
|
94
96
|
desc "`assert_not_false`"
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
@test = Factory.test do
|
97
|
+
subject {
|
98
|
+
args = args1
|
99
|
+
Factory.test do
|
99
100
|
assert_not_false(true) # pass
|
100
101
|
assert_not_false(*args) # fail
|
101
102
|
end
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
103
|
+
}
|
104
|
+
|
105
|
+
let(:desc1) { "assert not false fail desc" }
|
106
|
+
let(:args1) { [false, desc1] }
|
107
|
+
let(:config1) { subject.config }
|
106
108
|
|
107
109
|
should "produce results as expected" do
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
110
|
+
subject.run(&test_run_callback)
|
111
|
+
|
112
|
+
assert_that(test_run_result_count).equals(2)
|
113
|
+
assert_that(test_run_result_count(:pass)).equals(1)
|
114
|
+
assert_that(test_run_result_count(:fail)).equals(1)
|
112
115
|
|
113
|
-
|
114
|
-
|
115
|
-
assert_equal exp, test_run_results(:fail).first.message
|
116
|
+
exp = "#{args1[1]}\nExpected #{Assert::U.show(args1[0], config1)} to not be false."
|
117
|
+
assert_that(test_run_results(:fail).first.message).equals(exp)
|
116
118
|
end
|
117
119
|
end
|
118
120
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require "assert"
|
2
4
|
require "assert/assertions"
|
3
5
|
|
@@ -6,52 +8,54 @@ module Assert::Assertions
|
|
6
8
|
include Assert::Test::TestHelpers
|
7
9
|
|
8
10
|
desc "Assert::Context"
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
end
|
14
|
-
subject{ @context }
|
11
|
+
subject { context_class1.new(test1, test1.config, proc { |r| }) }
|
12
|
+
|
13
|
+
let(:context_class1) { Factory.modes_off_context_class }
|
14
|
+
let(:test1) { Factory.test }
|
15
15
|
|
16
16
|
should have_imeths :assert_block, :assert_not_block, :refute_block
|
17
|
-
should have_imeths :assert_raises, :assert_not_raises
|
18
|
-
should have_imeths :assert_raise, :assert_not_raise, :assert_nothing_raised
|
19
|
-
should have_imeths :assert_kind_of, :assert_not_kind_of, :refute_kind_of
|
20
|
-
should have_imeths :assert_instance_of, :assert_not_instance_of, :refute_instance_of
|
21
|
-
should have_imeths :assert_respond_to, :assert_responds_to
|
22
|
-
should have_imeths :assert_not_respond_to, :assert_not_responds_to
|
23
|
-
should have_imeths :refute_respond_to, :refute_responds_to
|
24
|
-
should have_imeths :assert_same, :assert_not_same, :refute_same
|
25
|
-
should have_imeths :assert_equal, :assert_not_equal, :refute_equal
|
26
|
-
should have_imeths :assert_match, :assert_not_match, :assert_no_match, :refute_match
|
27
17
|
should have_imeths :assert_empty, :assert_not_empty, :refute_empty
|
18
|
+
should have_imeths :assert_equal, :assert_not_equal, :refute_equal
|
19
|
+
should have_imeths :assert_file_exists, :assert_not_file_exists, :refute_file_exists
|
28
20
|
should have_imeths :assert_includes, :assert_not_includes
|
29
21
|
should have_imeths :assert_included, :assert_not_included
|
30
22
|
should have_imeths :refute_includes, :refute_included
|
23
|
+
should have_imeths :assert_instance_of, :assert_not_instance_of, :refute_instance_of
|
24
|
+
should have_imeths :assert_kind_of, :assert_not_kind_of, :refute_kind_of
|
25
|
+
should have_imeths :assert_match, :assert_not_match, :assert_no_match, :refute_match
|
31
26
|
should have_imeths :assert_nil, :assert_not_nil, :refute_nil
|
32
27
|
should have_imeths :assert_true, :assert_not_true, :refute_true
|
33
28
|
should have_imeths :assert_false, :assert_not_false, :refute_false
|
34
|
-
should have_imeths :
|
29
|
+
should have_imeths :assert_raises, :assert_not_raises
|
30
|
+
should have_imeths :assert_raise, :assert_not_raise, :assert_nothing_raised
|
31
|
+
should have_imeths :assert_changes, :assert_not_changes, :refute_changes
|
32
|
+
should have_imeths :assert_respond_to, :assert_responds_to
|
33
|
+
should have_imeths :assert_not_respond_to, :assert_not_responds_to
|
34
|
+
should have_imeths :refute_respond_to, :refute_responds_to
|
35
|
+
should have_imeths :assert_same, :assert_not_same, :refute_same
|
35
36
|
end
|
36
37
|
|
37
38
|
class IgnoredTests < UnitTests
|
38
39
|
desc "ignored assertions helpers"
|
39
40
|
setup do
|
40
|
-
|
41
|
-
|
41
|
+
tests.each{ |test| test.run(&test_run_callback) }
|
42
|
+
end
|
43
|
+
|
44
|
+
let(:tests) {
|
45
|
+
context_info = Factory.context_info(context_class1)
|
46
|
+
Assert::Assertions::IGNORED_ASSERTION_HELPERS.map do |helper|
|
42
47
|
Factory.test("ignored assertion helper #{helper}", context_info) do
|
43
48
|
self.send(helper, "doesn't matter")
|
44
49
|
end
|
45
50
|
end
|
46
|
-
|
47
|
-
end
|
51
|
+
}
|
48
52
|
|
49
53
|
should "have an ignored result for each helper in the constant" do
|
50
54
|
exp = Assert::Assertions::IGNORED_ASSERTION_HELPERS.size
|
51
|
-
|
55
|
+
assert_that(test_run_result_count).equals(exp)
|
52
56
|
|
53
57
|
test_run_results.each do |result|
|
54
|
-
|
58
|
+
assert_that(result).is_kind_of(Assert::Result::Ignore)
|
55
59
|
end
|
56
60
|
end
|
57
61
|
|
@@ -60,7 +64,7 @@ module Assert::Assertions
|
|
60
64
|
"The assertion `#{helper}` is not supported."\
|
61
65
|
" Please use another assertion or the basic `assert`."
|
62
66
|
end
|
63
|
-
|
67
|
+
assert_that(test_run_results.collect(&:message)).equals(exp)
|
64
68
|
end
|
65
69
|
end
|
66
70
|
end
|