assert 2.18.3 → 2.19.3
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/assert.gemspec +11 -5
- data/bin/assert +1 -0
- data/lib/assert.rb +20 -6
- data/lib/assert/actual_value.rb +26 -8
- data/lib/assert/assert_runner.rb +38 -17
- data/lib/assert/assertions.rb +145 -41
- data/lib/assert/cli.rb +19 -66
- data/lib/assert/clirb.rb +55 -0
- data/lib/assert/config.rb +9 -7
- data/lib/assert/config_helpers.rb +57 -22
- data/lib/assert/context.rb +33 -49
- data/lib/assert/context/let_dsl.rb +10 -4
- data/lib/assert/context/method_missing.rb +3 -0
- data/lib/assert/context/setup_dsl.rb +24 -16
- data/lib/assert/context/subject_dsl.rb +26 -25
- data/lib/assert/context/suite_dsl.rb +5 -1
- data/lib/assert/context/test_dsl.rb +58 -19
- data/lib/assert/context_info.rb +2 -0
- data/lib/assert/default_runner.rb +2 -0
- data/lib/assert/default_suite.rb +27 -15
- data/lib/assert/default_view.rb +49 -30
- data/lib/assert/factory.rb +2 -0
- data/lib/assert/file_line.rb +8 -6
- data/lib/assert/macro.rb +3 -1
- data/lib/assert/macros/methods.rb +73 -45
- data/lib/assert/result.rb +117 -61
- data/lib/assert/runner.rb +70 -51
- data/lib/assert/stub.rb +44 -3
- data/lib/assert/suite.rb +76 -38
- data/lib/assert/test.rb +43 -44
- data/lib/assert/utils.rb +22 -11
- data/lib/assert/version.rb +3 -1
- data/lib/assert/view.rb +46 -18
- data/lib/assert/view_helpers.rb +102 -92
- data/test/helper.rb +8 -4
- data/test/support/factory.rb +40 -21
- data/test/support/inherited_stuff.rb +2 -0
- data/test/system/stub_tests.rb +272 -250
- data/test/system/test_tests.rb +89 -73
- data/test/unit/actual_value_tests.rb +103 -46
- data/test/unit/assert_tests.rb +49 -39
- data/test/unit/assertions/assert_block_tests.rb +14 -14
- data/test/unit/assertions/assert_changes_tests.rb +103 -0
- data/test/unit/assertions/assert_empty_tests.rb +18 -16
- data/test/unit/assertions/assert_equal_tests.rb +48 -32
- data/test/unit/assertions/assert_file_exists_tests.rb +19 -17
- data/test/unit/assertions/assert_includes_tests.rb +14 -14
- data/test/unit/assertions/assert_instance_of_tests.rb +18 -18
- data/test/unit/assertions/assert_is_a_tests.rb +128 -0
- data/test/unit/assertions/assert_match_tests.rb +14 -14
- data/test/unit/assertions/assert_nil_tests.rb +20 -16
- data/test/unit/assertions/assert_raises_tests.rb +36 -27
- data/test/unit/assertions/assert_respond_to_tests.rb +14 -14
- data/test/unit/assertions/assert_same_tests.rb +28 -32
- data/test/unit/assertions/assert_true_false_tests.rb +38 -32
- data/test/unit/assertions_tests.rb +25 -18
- data/test/unit/config_helpers_tests.rb +20 -9
- data/test/unit/config_tests.rb +16 -8
- data/test/unit/context/let_dsl_tests.rb +2 -0
- data/test/unit/context/setup_dsl_tests.rb +27 -15
- data/test/unit/context/subject_dsl_tests.rb +5 -4
- data/test/unit/context/suite_dsl_tests.rb +6 -5
- data/test/unit/context/test_dsl_tests.rb +43 -19
- data/test/unit/context_info_tests.rb +12 -3
- data/test/unit/context_tests.rb +166 -116
- data/test/unit/default_runner_tests.rb +2 -0
- data/test/unit/default_suite_tests.rb +17 -5
- data/test/unit/factory_tests.rb +5 -1
- data/test/unit/file_line_tests.rb +14 -12
- data/test/unit/macro_tests.rb +17 -10
- data/test/unit/result_tests.rb +72 -75
- data/test/unit/runner_tests.rb +38 -23
- data/test/unit/suite_tests.rb +48 -30
- data/test/unit/test_tests.rb +88 -102
- data/test/unit/utils_tests.rb +53 -36
- data/test/unit/view_helpers_tests.rb +25 -17
- data/test/unit/view_tests.rb +8 -5
- metadata +40 -9
- data/test/unit/assertions/assert_kind_of_tests.rb +0 -68
@@ -1,13 +1,19 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module Assert; end
|
2
4
|
class Assert::Context; end
|
5
|
+
|
3
6
|
module Assert::Context::LetDSL
|
4
7
|
def let(name, &block)
|
5
|
-
|
6
|
-
|
7
|
-
instance_variable_set(
|
8
|
+
send(:define_method, name, &->{
|
9
|
+
unless instance_variable_defined?("@__assert_let_#{name}__")
|
10
|
+
instance_variable_set(
|
11
|
+
"@__assert_let_#{name}__",
|
12
|
+
instance_eval(&block),
|
13
|
+
)
|
8
14
|
end
|
9
15
|
|
10
|
-
instance_variable_get("
|
16
|
+
instance_variable_get("@__assert_let_#{name}__")
|
11
17
|
})
|
12
18
|
end
|
13
19
|
end
|
@@ -1,7 +1,10 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require "assert/assertions"
|
2
4
|
|
3
5
|
module Assert; end
|
4
6
|
class Assert::Context; end
|
7
|
+
|
5
8
|
module Assert::Context::MethodMissing
|
6
9
|
def method_missing(method, *args, &block)
|
7
10
|
if Assert::Assertions::IGNORED_ASSERTION_HELPERS.include?(method.to_sym)
|
@@ -1,29 +1,32 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module Assert; end
|
4
|
+
|
2
5
|
class Assert::Context
|
3
6
|
module SetupDSL
|
4
7
|
def setup_once(&block)
|
5
|
-
|
8
|
+
suite.setup(&block)
|
6
9
|
end
|
7
10
|
alias_method :before_once, :setup_once
|
8
11
|
alias_method :startup, :setup_once
|
9
12
|
|
10
13
|
def teardown_once(&block)
|
11
|
-
|
14
|
+
suite.teardown(&block)
|
12
15
|
end
|
13
16
|
alias_method :after_once, :teardown_once
|
14
17
|
alias_method :shutdown, :teardown_once
|
15
18
|
|
16
19
|
def around(&block)
|
17
|
-
|
20
|
+
arounds << block
|
18
21
|
end
|
19
22
|
|
20
23
|
def setup(method_name = nil, &block)
|
21
|
-
|
24
|
+
setups << (block || method_name)
|
22
25
|
end
|
23
26
|
alias_method :before, :setup
|
24
27
|
|
25
28
|
def teardown(method_name = nil, &block)
|
26
|
-
|
29
|
+
teardowns << (block || method_name)
|
27
30
|
end
|
28
31
|
alias_method :after, :teardown
|
29
32
|
|
@@ -40,12 +43,13 @@ class Assert::Context
|
|
40
43
|
end
|
41
44
|
|
42
45
|
def run_arounds(scope, &run_block)
|
43
|
-
context_block =
|
44
|
-
|
45
|
-
|
46
|
+
context_block =
|
47
|
+
arounds.compact.reverse.inject(run_block) do |run_b, around_b|
|
48
|
+
Proc.new{ scope.instance_exec(run_b, &around_b) }
|
49
|
+
end
|
46
50
|
|
47
|
-
if
|
48
|
-
|
51
|
+
if superclass.respond_to?(:run_arounds)
|
52
|
+
superclass.run_arounds(scope, &context_block)
|
49
53
|
else
|
50
54
|
context_block.call
|
51
55
|
end
|
@@ -53,20 +57,24 @@ class Assert::Context
|
|
53
57
|
|
54
58
|
def run_setups(scope)
|
55
59
|
# setup the parent...
|
56
|
-
|
60
|
+
superclass.run_setups(scope) if superclass.respond_to?(:run_setups)
|
57
61
|
# ... before you setup the child
|
58
|
-
|
59
|
-
setup.
|
62
|
+
setups.compact.each do |setup|
|
63
|
+
setup.is_a?(::Proc) ? scope.instance_eval(&setup) : scope.send(setup)
|
60
64
|
end
|
61
65
|
end
|
62
66
|
|
63
67
|
def run_teardowns(scope)
|
64
68
|
# teardown the child...
|
65
|
-
|
66
|
-
teardown.
|
69
|
+
teardowns.compact.each do |teardown|
|
70
|
+
if teardown.is_a?(::Proc)
|
71
|
+
scope.instance_eval(&teardown)
|
72
|
+
else
|
73
|
+
scope.send(teardown)
|
74
|
+
end
|
67
75
|
end
|
68
76
|
# ... before the parent
|
69
|
-
|
77
|
+
superclass.run_teardowns(scope) if superclass.respond_to?(:run_teardowns)
|
70
78
|
end
|
71
79
|
end
|
72
80
|
end
|
@@ -1,33 +1,34 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module Assert; end
|
2
|
-
class Assert::Context
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
4
|
+
class Assert::Context; end
|
5
|
+
|
6
|
+
module Assert::Context::SubjectDSL
|
7
|
+
# Add a piece of description text or return the full description
|
8
|
+
# for the context.
|
9
|
+
def description(text = nil)
|
10
|
+
if text
|
11
|
+
descriptions << text.to_s
|
12
|
+
else
|
13
|
+
parent = superclass.desc if superclass.respond_to?(:desc)
|
14
|
+
own = descriptions
|
15
|
+
[parent, *own].compact.reject(&:empty?).join(" ")
|
13
16
|
end
|
14
|
-
|
15
|
-
|
17
|
+
end
|
18
|
+
alias_method :desc, :description
|
19
|
+
alias_method :describe, :description
|
16
20
|
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
superclass.subject
|
23
|
-
end
|
24
|
-
end
|
21
|
+
def subject(&block)
|
22
|
+
if block_given?
|
23
|
+
@subject = block
|
24
|
+
else
|
25
|
+
@subject || (superclass.subject if superclass.respond_to?(:subject))
|
25
26
|
end
|
27
|
+
end
|
26
28
|
|
27
|
-
|
29
|
+
protected
|
28
30
|
|
29
|
-
|
30
|
-
|
31
|
-
end
|
31
|
+
def descriptions
|
32
|
+
@descriptions ||= []
|
32
33
|
end
|
33
34
|
end
|
@@ -1,11 +1,15 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module Assert; end
|
4
|
+
|
2
5
|
class Assert::Context
|
3
6
|
module SuiteDSL
|
4
7
|
def suite(suite_obj = nil)
|
5
8
|
if suite_obj
|
6
9
|
@suite = suite_obj
|
7
10
|
else
|
8
|
-
@suite ||
|
11
|
+
@suite ||
|
12
|
+
if superclass.respond_to?(:suite)
|
9
13
|
superclass.suite
|
10
14
|
else
|
11
15
|
Assert.suite
|
@@ -1,51 +1,90 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require "assert/context_info"
|
2
4
|
require "assert/macro"
|
3
5
|
require "assert/suite"
|
4
6
|
require "assert/test"
|
5
7
|
|
6
8
|
module Assert; end
|
9
|
+
|
7
10
|
class Assert::Context
|
8
11
|
module TestDSL
|
9
12
|
def test(desc_or_macro, called_from = nil, first_caller = nil, &block)
|
10
|
-
if desc_or_macro.
|
13
|
+
if desc_or_macro.is_a?(Assert::Macro)
|
11
14
|
instance_eval(&desc_or_macro)
|
12
15
|
elsif block_given?
|
13
16
|
# create a test from the given code block
|
14
|
-
|
15
|
-
desc_or_macro.
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
17
|
+
desc =
|
18
|
+
if desc_or_macro.is_a?(Assert::Macro)
|
19
|
+
desc_or_macro.name
|
20
|
+
else
|
21
|
+
desc_or_macro
|
22
|
+
end
|
23
|
+
suite.on_test(
|
24
|
+
Assert::Test.for_block(
|
25
|
+
desc,
|
26
|
+
Assert::ContextInfo.new(
|
27
|
+
self,
|
28
|
+
called_from,
|
29
|
+
first_caller || caller_locations.first,
|
30
|
+
),
|
31
|
+
suite.config,
|
32
|
+
&block
|
33
|
+
),
|
34
|
+
)
|
20
35
|
else
|
21
|
-
test_eventually(
|
36
|
+
test_eventually(
|
37
|
+
desc_or_macro,
|
38
|
+
called_from,
|
39
|
+
first_caller || caller_locations.first,
|
40
|
+
&block
|
41
|
+
)
|
22
42
|
end
|
23
43
|
end
|
24
44
|
|
25
|
-
def test_eventually(desc_or_macro, called_from = nil, first_caller = nil
|
45
|
+
def test_eventually(desc_or_macro, called_from = nil, first_caller = nil)
|
26
46
|
# create a test from a proc that just skips
|
27
|
-
ci =
|
28
|
-
|
29
|
-
|
47
|
+
ci =
|
48
|
+
Assert::ContextInfo.new(
|
49
|
+
self,
|
50
|
+
called_from,
|
51
|
+
first_caller || caller_locations.first,
|
52
|
+
)
|
53
|
+
suite.on_test(Assert::Test.for_block(
|
54
|
+
desc_or_macro.is_a?(Assert::Macro) ? desc_or_macro.name : desc_or_macro,
|
30
55
|
ci,
|
31
|
-
|
32
|
-
&proc
|
56
|
+
suite.config,
|
57
|
+
&proc{ skip("TODO", [ci.called_from.to_s]) }
|
33
58
|
))
|
34
59
|
end
|
35
60
|
alias_method :test_skip, :test_eventually
|
36
61
|
|
37
62
|
def should(desc_or_macro, called_from = nil, first_caller = nil, &block)
|
38
|
-
|
63
|
+
unless desc_or_macro.is_a?(Assert::Macro)
|
39
64
|
desc_or_macro = "should #{desc_or_macro}"
|
40
65
|
end
|
41
|
-
test(
|
66
|
+
test(
|
67
|
+
desc_or_macro,
|
68
|
+
called_from,
|
69
|
+
first_caller || caller_locations.first,
|
70
|
+
&block
|
71
|
+
)
|
42
72
|
end
|
43
73
|
|
44
|
-
def should_eventually(
|
45
|
-
|
74
|
+
def should_eventually(
|
75
|
+
desc_or_macro,
|
76
|
+
called_from = nil,
|
77
|
+
first_caller = nil,
|
78
|
+
&block)
|
79
|
+
unless desc_or_macro.is_a?(Assert::Macro)
|
46
80
|
desc_or_macro = "should #{desc_or_macro}"
|
47
81
|
end
|
48
|
-
test_eventually(
|
82
|
+
test_eventually(
|
83
|
+
desc_or_macro,
|
84
|
+
called_from,
|
85
|
+
first_caller || caller_locations.first,
|
86
|
+
&block
|
87
|
+
)
|
49
88
|
end
|
50
89
|
alias_method :should_skip, :should_eventually
|
51
90
|
end
|
data/lib/assert/context_info.rb
CHANGED
data/lib/assert/default_suite.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require "assert/suite"
|
2
4
|
|
3
5
|
module Assert
|
@@ -5,41 +7,51 @@ module Assert
|
|
5
7
|
# behavior, it accumulates test/result counts in memory. This data is used
|
6
8
|
# by the runner/view for handling and presentation purposes.
|
7
9
|
class DefaultSuite < Assert::Suite
|
10
|
+
attr_reader :test_count, :result_count, :pass_result_count
|
11
|
+
attr_reader :fail_result_count, :error_result_count
|
12
|
+
attr_reader :skip_result_count, :ignore_result_count
|
13
|
+
|
8
14
|
def initialize(config)
|
9
15
|
super
|
10
16
|
reset_run_data
|
11
17
|
end
|
12
18
|
|
13
|
-
def test_count; @test_count; end
|
14
|
-
def result_count; @result_count; end
|
15
|
-
def pass_result_count; @pass_result_count; end
|
16
|
-
def fail_result_count; @fail_result_count; end
|
17
|
-
def error_result_count; @error_result_count; end
|
18
|
-
def skip_result_count; @skip_result_count; end
|
19
|
-
def ignore_result_count; @ignore_result_count; end
|
20
|
-
|
21
19
|
# Callbacks
|
22
20
|
|
23
21
|
def on_start
|
24
22
|
reset_run_data
|
25
23
|
end
|
26
24
|
|
27
|
-
def before_test(
|
25
|
+
def before_test(_test)
|
28
26
|
@test_count += 1
|
29
27
|
end
|
30
28
|
|
31
29
|
def on_result(result)
|
32
30
|
@result_count += 1
|
33
|
-
|
31
|
+
send("increment_#{result.type}_result_count")
|
34
32
|
end
|
35
33
|
|
36
34
|
private
|
37
35
|
|
38
|
-
def increment_pass_result_count
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
def
|
36
|
+
def increment_pass_result_count
|
37
|
+
@pass_result_count += 1
|
38
|
+
end
|
39
|
+
|
40
|
+
def increment_fail_result_count
|
41
|
+
@fail_result_count += 1
|
42
|
+
end
|
43
|
+
|
44
|
+
def increment_error_result_count
|
45
|
+
@error_result_count += 1
|
46
|
+
end
|
47
|
+
|
48
|
+
def increment_skip_result_count
|
49
|
+
@skip_result_count += 1
|
50
|
+
end
|
51
|
+
|
52
|
+
def increment_ignore_result_count
|
53
|
+
@ignore_result_count += 1
|
54
|
+
end
|
43
55
|
|
44
56
|
def reset_run_data
|
45
57
|
@test_count = 0
|
data/lib/assert/default_view.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require "assert/view"
|
2
4
|
require "assert/view_helpers"
|
3
5
|
|
@@ -29,26 +31,28 @@ module Assert
|
|
29
31
|
end
|
30
32
|
|
31
33
|
def on_finish
|
32
|
-
if
|
33
|
-
dump_test_results
|
34
|
-
end
|
34
|
+
dump_test_results if test_count > 0
|
35
35
|
|
36
36
|
# show profile output
|
37
37
|
if show_test_profile_info?
|
38
38
|
# sort the test datas fastest to slowest
|
39
|
-
@test_datas
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
39
|
+
@test_datas
|
40
|
+
.values
|
41
|
+
.sort{ |a, b| a.run_time <=> b.run_time }
|
42
|
+
.each do |test_data|
|
43
|
+
puts "#{formatted_run_time(test_data.run_time)} seconds,"\
|
44
|
+
" #{test_data.result_count} results,"\
|
45
|
+
" #{formatted_result_rate(test_data.result_rate)} results/s "\
|
46
|
+
"-- #{test_data.context}: #{test_data.name.inspect}"
|
47
|
+
end
|
45
48
|
puts
|
46
49
|
end
|
47
50
|
|
48
51
|
# style the summaries of each result set
|
49
|
-
styled_results_sentence =
|
50
|
-
|
51
|
-
|
52
|
+
styled_results_sentence =
|
53
|
+
results_summary_sentence do |summary, result_type|
|
54
|
+
ansi_styled_msg(summary, result_type)
|
55
|
+
end
|
52
56
|
|
53
57
|
puts "#{result_count_statement}: #{styled_results_sentence}"
|
54
58
|
puts
|
@@ -66,7 +70,7 @@ module Assert
|
|
66
70
|
puts
|
67
71
|
end
|
68
72
|
|
69
|
-
def on_interrupt(
|
73
|
+
def on_interrupt(_err)
|
70
74
|
dump_test_results
|
71
75
|
end
|
72
76
|
|
@@ -80,7 +84,7 @@ module Assert
|
|
80
84
|
def set_callbacks
|
81
85
|
@metaclass = class << self; self; end
|
82
86
|
if accumulate_test_data?
|
83
|
-
@metaclass.class_eval <<-
|
87
|
+
@metaclass.class_eval <<-RUBY
|
84
88
|
def before_test(test)
|
85
89
|
test_data = get_test_data(test)
|
86
90
|
puts "\#{test_data.name.inspect} (\#{test_data.context})"
|
@@ -89,32 +93,46 @@ module Assert
|
|
89
93
|
end
|
90
94
|
|
91
95
|
def on_result(result)
|
92
|
-
print
|
93
|
-
|
96
|
+
print(
|
97
|
+
ansi_styled_msg(
|
98
|
+
self.send("\#{result.to_sym}_abbrev"),
|
99
|
+
result.type,
|
100
|
+
)
|
101
|
+
)
|
102
|
+
@results_to_dump <<
|
103
|
+
ResultData.for_result(result) if dumpable_result?(result)
|
94
104
|
find_test_data(result.test_file_line).result_count += 1
|
95
105
|
end
|
96
106
|
|
97
107
|
def after_test(test)
|
98
108
|
test_data = find_test_data(test.file_line)
|
99
|
-
test_data.run_time
|
100
|
-
test_data.result_rate =
|
109
|
+
test_data.run_time = test.run_time
|
110
|
+
test_data.result_rate =
|
111
|
+
get_rate(test_data.result_count, test_data.run_time)
|
101
112
|
|
102
113
|
if show_test_verbose_info?
|
103
114
|
print " \#{formatted_run_time(test_data.run_time)} seconds,"\
|
104
115
|
" \#{test_data.result_count} results,"\
|
105
|
-
" \#{formatted_result_rate(test_data.result_rate)}
|
116
|
+
" \#{formatted_result_rate(test_data.result_rate)} "\
|
117
|
+
"results/s\n"
|
106
118
|
else
|
107
119
|
print "\n"
|
108
120
|
end
|
109
121
|
end
|
110
|
-
|
122
|
+
RUBY
|
111
123
|
else
|
112
|
-
@metaclass.class_eval <<-
|
124
|
+
@metaclass.class_eval <<-RUBY
|
113
125
|
def on_result(result)
|
114
|
-
print
|
115
|
-
|
126
|
+
print(
|
127
|
+
ansi_styled_msg(
|
128
|
+
self.send("\#{result.to_sym}_abbrev"),
|
129
|
+
result.type
|
130
|
+
)
|
131
|
+
)
|
132
|
+
@results_to_dump <<
|
133
|
+
ResultData.for_result(result) if dumpable_result?(result)
|
116
134
|
end
|
117
|
-
|
135
|
+
RUBY
|
118
136
|
end
|
119
137
|
end
|
120
138
|
|
@@ -156,27 +174,28 @@ module Assert
|
|
156
174
|
end
|
157
175
|
end
|
158
176
|
|
159
|
-
attrs =
|
177
|
+
attrs =
|
178
|
+
[:name, :context, :file_line, :result_count, :run_time, :result_rate]
|
160
179
|
class TestData < Struct.new(*attrs)
|
161
180
|
def self.for_test(t)
|
162
|
-
|
181
|
+
new(t.name, t.context_class, t.file_line.to_s, 0, 0.0, 0.0)
|
163
182
|
end
|
164
183
|
end
|
165
184
|
|
166
185
|
attrs = [:type, :details, :output, :test_id, :sort_by]
|
167
186
|
class ResultData < Struct.new(*attrs)
|
168
187
|
def self.for_result(r)
|
169
|
-
|
188
|
+
new(r.type, r.to_s, r.output, r.test_id, sort_by(r))
|
170
189
|
end
|
171
190
|
|
172
191
|
def self.sort_by(r)
|
173
192
|
[r.test_file_name, r.test_line_num, r.file_name, r.line_num]
|
174
193
|
end
|
175
194
|
|
176
|
-
def <=>(
|
195
|
+
def <=>(other)
|
177
196
|
# show in reverse definition order
|
178
|
-
if
|
179
|
-
|
197
|
+
if other.is_a?(ResultData)
|
198
|
+
other.sort_by <=> sort_by
|
180
199
|
else
|
181
200
|
super
|
182
201
|
end
|