diff-lcs 1.5.0 → 1.5.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Contributing.md +2 -0
- data/History.md +86 -55
- data/License.md +6 -4
- data/Rakefile +36 -27
- data/bin/htmldiff +4 -4
- data/lib/diff/lcs/array.rb +1 -1
- data/lib/diff/lcs/backports.rb +2 -2
- data/lib/diff/lcs/block.rb +4 -4
- data/lib/diff/lcs/callbacks.rb +9 -7
- data/lib/diff/lcs/change.rb +19 -19
- data/lib/diff/lcs/htmldiff.rb +24 -16
- data/lib/diff/lcs/hunk.rb +35 -30
- data/lib/diff/lcs/internals.rb +17 -17
- data/lib/diff/lcs/ldiff.rb +37 -35
- data/lib/diff/lcs.rb +57 -55
- data/lib/diff-lcs.rb +1 -1
- data/spec/change_spec.rb +50 -50
- data/spec/diff_spec.rb +14 -14
- data/spec/hunk_spec.rb +19 -19
- data/spec/issues_spec.rb +48 -42
- data/spec/lcs_spec.rb +11 -11
- data/spec/ldiff_spec.rb +13 -11
- data/spec/patch_spec.rb +84 -84
- data/spec/sdiff_spec.rb +111 -109
- data/spec/spec_helper.rb +76 -74
- data/spec/traverse_balanced_spec.rb +191 -189
- data/spec/traverse_sequences_spec.rb +31 -31
- metadata +28 -21
data/spec/sdiff_spec.rb
CHANGED
@@ -1,214 +1,216 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require
|
3
|
+
require "spec_helper"
|
4
4
|
|
5
|
-
describe
|
5
|
+
describe "Diff::LCS.sdiff" do
|
6
6
|
include Diff::LCS::SpecHelper::Matchers
|
7
7
|
|
8
|
-
shared_examples
|
9
|
-
it
|
8
|
+
shared_examples "compare sequences correctly" do
|
9
|
+
it "compares s1 -> s2 correctly" do
|
10
10
|
expect(Diff::LCS.sdiff(s1, s2)).to eq(context_diff(result))
|
11
11
|
end
|
12
12
|
|
13
|
-
it
|
13
|
+
it "compares s2 -> s1 correctly" do
|
14
14
|
expect(Diff::LCS.sdiff(s2, s1)).to eq(context_diff(reverse_sdiff(result)))
|
15
15
|
end
|
16
16
|
end
|
17
17
|
|
18
|
-
describe
|
18
|
+
describe "using seq1 & seq2" do
|
19
19
|
let(:s1) { seq1 }
|
20
20
|
let(:s2) { seq2 }
|
21
21
|
let(:result) { correct_forward_sdiff }
|
22
22
|
|
23
|
-
it_has_behavior
|
23
|
+
it_has_behavior "compare sequences correctly"
|
24
24
|
end
|
25
25
|
|
26
|
-
describe
|
27
|
-
let(:s1) { %w
|
28
|
-
let(:s2) { %w
|
26
|
+
describe "using %w(abc def yyy xxx ghi jkl) & %w(abc dxf xxx ghi jkl)" do
|
27
|
+
let(:s1) { %w[abc def yyy xxx ghi jkl] }
|
28
|
+
let(:s2) { %w[abc dxf xxx ghi jkl] }
|
29
29
|
let(:result) {
|
30
|
+
# standard:disable Layout/ExtraSpacing
|
30
31
|
[
|
31
|
-
[
|
32
|
-
[
|
33
|
-
[
|
34
|
-
[
|
35
|
-
[
|
36
|
-
[
|
32
|
+
["=", [0, "abc"], [0, "abc"]],
|
33
|
+
["!", [1, "def"], [1, "dxf"]],
|
34
|
+
["-", [2, "yyy"], [2, nil]],
|
35
|
+
["=", [3, "xxx"], [2, "xxx"]],
|
36
|
+
["=", [4, "ghi"], [3, "ghi"]],
|
37
|
+
["=", [5, "jkl"], [4, "jkl"]]
|
37
38
|
]
|
39
|
+
# standard:enable Layout/ExtraSpacing
|
38
40
|
}
|
39
41
|
|
40
|
-
it_has_behavior
|
42
|
+
it_has_behavior "compare sequences correctly"
|
41
43
|
end
|
42
44
|
|
43
|
-
describe
|
44
|
-
let(:s1) { %w
|
45
|
-
let(:s2) { %w
|
45
|
+
describe "using %w(a b c d e) & %w(a e)" do
|
46
|
+
let(:s1) { %w[a b c d e] }
|
47
|
+
let(:s2) { %w[a e] }
|
46
48
|
let(:result) {
|
47
49
|
[
|
48
|
-
[
|
49
|
-
[
|
50
|
-
[
|
51
|
-
[
|
52
|
-
[
|
50
|
+
["=", [0, "a"], [0, "a"]],
|
51
|
+
["-", [1, "b"], [1, nil]],
|
52
|
+
["-", [2, "c"], [1, nil]],
|
53
|
+
["-", [3, "d"], [1, nil]],
|
54
|
+
["=", [4, "e"], [1, "e"]]
|
53
55
|
]
|
54
56
|
}
|
55
57
|
|
56
|
-
it_has_behavior
|
58
|
+
it_has_behavior "compare sequences correctly"
|
57
59
|
end
|
58
60
|
|
59
|
-
describe
|
60
|
-
let(:s1) { %w
|
61
|
-
let(:s2) { %w
|
61
|
+
describe "using %w(a e) & %w(a b c d e)" do
|
62
|
+
let(:s1) { %w[a e] }
|
63
|
+
let(:s2) { %w[a b c d e] }
|
62
64
|
let(:result) {
|
63
65
|
[
|
64
|
-
[
|
65
|
-
[
|
66
|
-
[
|
67
|
-
[
|
68
|
-
[
|
66
|
+
["=", [0, "a"], [0, "a"]],
|
67
|
+
["+", [1, nil], [1, "b"]],
|
68
|
+
["+", [1, nil], [2, "c"]],
|
69
|
+
["+", [1, nil], [3, "d"]],
|
70
|
+
["=", [1, "e"], [4, "e"]]
|
69
71
|
]
|
70
72
|
}
|
71
73
|
|
72
|
-
it_has_behavior
|
74
|
+
it_has_behavior "compare sequences correctly"
|
73
75
|
end
|
74
76
|
|
75
|
-
describe
|
76
|
-
let(:s1) { %w
|
77
|
-
let(:s2) { %w
|
77
|
+
describe "using %w(v x a e) & %w(w y a b c d e)" do
|
78
|
+
let(:s1) { %w[v x a e] }
|
79
|
+
let(:s2) { %w[w y a b c d e] }
|
78
80
|
let(:result) {
|
79
81
|
[
|
80
|
-
[
|
81
|
-
[
|
82
|
-
[
|
83
|
-
[
|
84
|
-
[
|
85
|
-
[
|
86
|
-
[
|
82
|
+
["!", [0, "v"], [0, "w"]],
|
83
|
+
["!", [1, "x"], [1, "y"]],
|
84
|
+
["=", [2, "a"], [2, "a"]],
|
85
|
+
["+", [3, nil], [3, "b"]],
|
86
|
+
["+", [3, nil], [4, "c"]],
|
87
|
+
["+", [3, nil], [5, "d"]],
|
88
|
+
["=", [3, "e"], [6, "e"]]
|
87
89
|
]
|
88
90
|
}
|
89
91
|
|
90
|
-
it_has_behavior
|
92
|
+
it_has_behavior "compare sequences correctly"
|
91
93
|
end
|
92
94
|
|
93
|
-
describe
|
94
|
-
let(:s1) { %w
|
95
|
-
let(:s2) { %w
|
95
|
+
describe "using %w(x a e) & %w(a b c d e)" do
|
96
|
+
let(:s1) { %w[x a e] }
|
97
|
+
let(:s2) { %w[a b c d e] }
|
96
98
|
let(:result) {
|
97
99
|
[
|
98
|
-
[
|
99
|
-
[
|
100
|
-
[
|
101
|
-
[
|
102
|
-
[
|
103
|
-
[
|
100
|
+
["-", [0, "x"], [0, nil]],
|
101
|
+
["=", [1, "a"], [0, "a"]],
|
102
|
+
["+", [2, nil], [1, "b"]],
|
103
|
+
["+", [2, nil], [2, "c"]],
|
104
|
+
["+", [2, nil], [3, "d"]],
|
105
|
+
["=", [2, "e"], [4, "e"]]
|
104
106
|
]
|
105
107
|
}
|
106
108
|
|
107
|
-
it_has_behavior
|
109
|
+
it_has_behavior "compare sequences correctly"
|
108
110
|
end
|
109
111
|
|
110
|
-
describe
|
111
|
-
let(:s1) { %w
|
112
|
-
let(:s2) { %w
|
112
|
+
describe "using %w(a e) & %w(x a b c d e)" do
|
113
|
+
let(:s1) { %w[a e] }
|
114
|
+
let(:s2) { %w[x a b c d e] }
|
113
115
|
let(:result) {
|
114
116
|
[
|
115
|
-
[
|
116
|
-
[
|
117
|
-
[
|
118
|
-
[
|
119
|
-
[
|
120
|
-
[
|
117
|
+
["+", [0, nil], [0, "x"]],
|
118
|
+
["=", [0, "a"], [1, "a"]],
|
119
|
+
["+", [1, nil], [2, "b"]],
|
120
|
+
["+", [1, nil], [3, "c"]],
|
121
|
+
["+", [1, nil], [4, "d"]],
|
122
|
+
["=", [1, "e"], [5, "e"]]
|
121
123
|
]
|
122
124
|
}
|
123
125
|
|
124
|
-
it_has_behavior
|
126
|
+
it_has_behavior "compare sequences correctly"
|
125
127
|
end
|
126
128
|
|
127
|
-
describe
|
128
|
-
let(:s1) { %w
|
129
|
-
let(:s2) { %w
|
129
|
+
describe "using %w(a e v) & %w(x a b c d e w x)" do
|
130
|
+
let(:s1) { %w[a e v] }
|
131
|
+
let(:s2) { %w[x a b c d e w x] }
|
130
132
|
let(:result) {
|
131
133
|
[
|
132
|
-
[
|
133
|
-
[
|
134
|
-
[
|
135
|
-
[
|
136
|
-
[
|
137
|
-
[
|
138
|
-
[
|
139
|
-
[
|
134
|
+
["+", [0, nil], [0, "x"]],
|
135
|
+
["=", [0, "a"], [1, "a"]],
|
136
|
+
["+", [1, nil], [2, "b"]],
|
137
|
+
["+", [1, nil], [3, "c"]],
|
138
|
+
["+", [1, nil], [4, "d"]],
|
139
|
+
["=", [1, "e"], [5, "e"]],
|
140
|
+
["!", [2, "v"], [6, "w"]],
|
141
|
+
["+", [3, nil], [7, "x"]]
|
140
142
|
]
|
141
143
|
}
|
142
144
|
|
143
|
-
it_has_behavior
|
145
|
+
it_has_behavior "compare sequences correctly"
|
144
146
|
end
|
145
147
|
|
146
|
-
describe
|
147
|
-
let(:s1) { %w
|
148
|
-
let(:s2) { %w
|
148
|
+
describe "using %w() & %w(a b c)" do
|
149
|
+
let(:s1) { %w[] }
|
150
|
+
let(:s2) { %w[a b c] }
|
149
151
|
let(:result) {
|
150
152
|
[
|
151
|
-
[
|
152
|
-
[
|
153
|
-
[
|
153
|
+
["+", [0, nil], [0, "a"]],
|
154
|
+
["+", [0, nil], [1, "b"]],
|
155
|
+
["+", [0, nil], [2, "c"]]
|
154
156
|
]
|
155
157
|
}
|
156
158
|
|
157
|
-
it_has_behavior
|
159
|
+
it_has_behavior "compare sequences correctly"
|
158
160
|
end
|
159
161
|
|
160
|
-
describe
|
161
|
-
let(:s1) { %w
|
162
|
-
let(:s2) { %w
|
162
|
+
describe "using %w(a b c) & %w(1)" do
|
163
|
+
let(:s1) { %w[a b c] }
|
164
|
+
let(:s2) { %w[1] }
|
163
165
|
let(:result) {
|
164
166
|
[
|
165
|
-
[
|
166
|
-
[
|
167
|
-
[
|
167
|
+
["!", [0, "a"], [0, "1"]],
|
168
|
+
["-", [1, "b"], [1, nil]],
|
169
|
+
["-", [2, "c"], [1, nil]]
|
168
170
|
]
|
169
171
|
}
|
170
172
|
|
171
|
-
it_has_behavior
|
173
|
+
it_has_behavior "compare sequences correctly"
|
172
174
|
end
|
173
175
|
|
174
|
-
describe
|
175
|
-
let(:s1) { %w
|
176
|
-
let(:s2) { %w
|
176
|
+
describe "using %w(a b c) & %w(c)" do
|
177
|
+
let(:s1) { %w[a b c] }
|
178
|
+
let(:s2) { %w[c] }
|
177
179
|
let(:result) {
|
178
180
|
[
|
179
|
-
[
|
180
|
-
[
|
181
|
-
[
|
181
|
+
["-", [0, "a"], [0, nil]],
|
182
|
+
["-", [1, "b"], [0, nil]],
|
183
|
+
["=", [2, "c"], [0, "c"]]
|
182
184
|
]
|
183
185
|
}
|
184
186
|
|
185
|
-
it_has_behavior
|
187
|
+
it_has_behavior "compare sequences correctly"
|
186
188
|
end
|
187
189
|
|
188
|
-
describe
|
189
|
-
let(:s1) { %w
|
190
|
+
describe "using %w(abcd efgh ijkl mnop) & []" do
|
191
|
+
let(:s1) { %w[abcd efgh ijkl mnop] }
|
190
192
|
let(:s2) { [] }
|
191
193
|
let(:result) {
|
192
194
|
[
|
193
|
-
[
|
194
|
-
[
|
195
|
-
[
|
196
|
-
[
|
195
|
+
["-", [0, "abcd"], [0, nil]],
|
196
|
+
["-", [1, "efgh"], [0, nil]],
|
197
|
+
["-", [2, "ijkl"], [0, nil]],
|
198
|
+
["-", [3, "mnop"], [0, nil]]
|
197
199
|
]
|
198
200
|
}
|
199
201
|
|
200
|
-
it_has_behavior
|
202
|
+
it_has_behavior "compare sequences correctly"
|
201
203
|
end
|
202
204
|
|
203
|
-
describe
|
205
|
+
describe "using [[1,2]] & []" do
|
204
206
|
let(:s1) { [[1, 2]] }
|
205
207
|
let(:s2) { [] }
|
206
208
|
let(:result) {
|
207
209
|
[
|
208
|
-
[
|
210
|
+
["-", [0, [1, 2]], [0, nil]]
|
209
211
|
]
|
210
212
|
}
|
211
213
|
|
212
|
-
it_has_behavior
|
214
|
+
it_has_behavior "compare sequences correctly"
|
213
215
|
end
|
214
216
|
end
|
data/spec/spec_helper.rb
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require
|
4
|
-
require
|
3
|
+
require "rubygems"
|
4
|
+
require "pathname"
|
5
5
|
|
6
|
-
require
|
6
|
+
require "psych" if RUBY_VERSION >= "1.9"
|
7
7
|
|
8
|
-
if ENV[
|
9
|
-
require
|
8
|
+
if ENV["COVERAGE"]
|
9
|
+
require "simplecov"
|
10
10
|
|
11
11
|
def require_do(resource)
|
12
12
|
require resource
|
@@ -17,13 +17,13 @@ if ENV['COVERAGE']
|
|
17
17
|
|
18
18
|
formatters = [SimpleCov::Formatter::HTMLFormatter]
|
19
19
|
|
20
|
-
require_do(
|
20
|
+
require_do("simplecov-rcov") {
|
21
21
|
formatters << SimpleCov::Formatter::RcovFormatter
|
22
22
|
}
|
23
|
-
require_do(
|
23
|
+
require_do("simplecov-vim/formatter") {
|
24
24
|
formatters << SimpleCov::Formatter::VimFormatter
|
25
25
|
}
|
26
|
-
require_do(
|
26
|
+
require_do("simplecov-sublime-ruby-coverage") {
|
27
27
|
formatters << SimpleCov::Formatter::SublimeRubyCoverageFormatter
|
28
28
|
}
|
29
29
|
|
@@ -32,11 +32,11 @@ if ENV['COVERAGE']
|
|
32
32
|
end
|
33
33
|
end
|
34
34
|
|
35
|
-
file
|
36
|
-
path
|
35
|
+
file = Pathname.new(__FILE__).expand_path
|
36
|
+
path = file.parent
|
37
37
|
parent = path.parent
|
38
38
|
|
39
|
-
$:.unshift parent.join(
|
39
|
+
$:.unshift parent.join("lib")
|
40
40
|
|
41
41
|
module CaptureSubprocessIO
|
42
42
|
def _synchronize
|
@@ -48,9 +48,9 @@ module CaptureSubprocessIO
|
|
48
48
|
end
|
49
49
|
|
50
50
|
def _capture_subprocess_io
|
51
|
-
require
|
51
|
+
require "tempfile"
|
52
52
|
|
53
|
-
captured_stdout, captured_stderr = Tempfile.new(
|
53
|
+
captured_stdout, captured_stderr = Tempfile.new("out"), Tempfile.new("err")
|
54
54
|
|
55
55
|
orig_stdout, orig_stderr = $stdout.dup, $stderr.dup
|
56
56
|
$stdout.reopen captured_stdout
|
@@ -71,62 +71,63 @@ module CaptureSubprocessIO
|
|
71
71
|
private :_capture_subprocess_io
|
72
72
|
end
|
73
73
|
|
74
|
-
require
|
74
|
+
require "diff-lcs"
|
75
75
|
|
76
76
|
module Diff::LCS::SpecHelper
|
77
77
|
def hello
|
78
|
-
|
78
|
+
"hello"
|
79
79
|
end
|
80
80
|
|
81
81
|
def hello_ary
|
82
|
-
%w
|
82
|
+
%w[h e l l o]
|
83
83
|
end
|
84
84
|
|
85
85
|
def seq1
|
86
|
-
%w
|
86
|
+
%w[a b c e h j l m n p]
|
87
87
|
end
|
88
88
|
|
89
89
|
def skipped_seq1
|
90
|
-
%w
|
90
|
+
%w[a h n p]
|
91
91
|
end
|
92
92
|
|
93
93
|
def seq2
|
94
|
-
%w
|
94
|
+
%w[b c d e f j k l m r s t]
|
95
95
|
end
|
96
96
|
|
97
97
|
def skipped_seq2
|
98
|
-
%w
|
98
|
+
%w[d f k r s t]
|
99
99
|
end
|
100
100
|
|
101
101
|
def word_sequence
|
102
|
-
%w
|
102
|
+
%w[abcd efgh ijkl mnopqrstuvwxyz]
|
103
103
|
end
|
104
104
|
|
105
105
|
def correct_lcs
|
106
|
-
%w
|
106
|
+
%w[b c e j l m]
|
107
107
|
end
|
108
108
|
|
109
|
+
# standard:disable Layout/ExtraSpacing
|
109
110
|
def correct_forward_diff
|
110
111
|
[
|
111
112
|
[
|
112
|
-
[
|
113
|
+
["-", 0, "a"]
|
113
114
|
],
|
114
115
|
[
|
115
|
-
[
|
116
|
+
["+", 2, "d"]
|
116
117
|
],
|
117
118
|
[
|
118
|
-
[
|
119
|
-
[
|
119
|
+
["-", 4, "h"],
|
120
|
+
["+", 4, "f"]
|
120
121
|
],
|
121
122
|
[
|
122
|
-
[
|
123
|
+
["+", 6, "k"]
|
123
124
|
],
|
124
125
|
[
|
125
|
-
[
|
126
|
-
[
|
127
|
-
[
|
128
|
-
[
|
129
|
-
[
|
126
|
+
["-", 8, "n"],
|
127
|
+
["+", 9, "r"],
|
128
|
+
["-", 9, "p"],
|
129
|
+
["+", 10, "s"],
|
130
|
+
["+", 11, "t"]
|
130
131
|
]
|
131
132
|
]
|
132
133
|
end
|
@@ -134,52 +135,53 @@ module Diff::LCS::SpecHelper
|
|
134
135
|
def correct_backward_diff
|
135
136
|
[
|
136
137
|
[
|
137
|
-
[
|
138
|
+
["+", 0, "a"]
|
138
139
|
],
|
139
140
|
[
|
140
|
-
[
|
141
|
+
["-", 2, "d"]
|
141
142
|
],
|
142
143
|
[
|
143
|
-
[
|
144
|
-
[
|
144
|
+
["-", 4, "f"],
|
145
|
+
["+", 4, "h"]
|
145
146
|
],
|
146
147
|
[
|
147
|
-
[
|
148
|
+
["-", 6, "k"]
|
148
149
|
],
|
149
150
|
[
|
150
|
-
[
|
151
|
-
[
|
152
|
-
[
|
153
|
-
[
|
154
|
-
[
|
151
|
+
["-", 9, "r"],
|
152
|
+
["+", 8, "n"],
|
153
|
+
["-", 10, "s"],
|
154
|
+
["+", 9, "p"],
|
155
|
+
["-", 11, "t"]
|
155
156
|
]
|
156
157
|
]
|
157
158
|
end
|
158
159
|
|
159
160
|
def correct_forward_sdiff
|
160
161
|
[
|
161
|
-
[
|
162
|
-
[
|
163
|
-
[
|
164
|
-
[
|
165
|
-
[
|
166
|
-
[
|
167
|
-
[
|
168
|
-
[
|
169
|
-
[
|
170
|
-
[
|
171
|
-
[
|
172
|
-
[
|
173
|
-
[
|
162
|
+
["-", [0, "a"], [0, nil]],
|
163
|
+
["=", [1, "b"], [0, "b"]],
|
164
|
+
["=", [2, "c"], [1, "c"]],
|
165
|
+
["+", [3, nil], [2, "d"]],
|
166
|
+
["=", [3, "e"], [3, "e"]],
|
167
|
+
["!", [4, "h"], [4, "f"]],
|
168
|
+
["=", [5, "j"], [5, "j"]],
|
169
|
+
["+", [6, nil], [6, "k"]],
|
170
|
+
["=", [6, "l"], [7, "l"]],
|
171
|
+
["=", [7, "m"], [8, "m"]],
|
172
|
+
["!", [8, "n"], [9, "r"]],
|
173
|
+
["!", [9, "p"], [10, "s"]],
|
174
|
+
["+", [10, nil], [11, "t"]]
|
174
175
|
]
|
175
176
|
end
|
177
|
+
# standard:enable Layout/ExtraSpacing
|
176
178
|
|
177
179
|
def reverse_sdiff(forward_sdiff)
|
178
180
|
forward_sdiff.map { |line|
|
179
181
|
line[1], line[2] = line[2], line[1]
|
180
182
|
case line[0]
|
181
|
-
when
|
182
|
-
when
|
183
|
+
when "-" then line[0] = "+"
|
184
|
+
when "+" then line[0] = "-"
|
183
185
|
end
|
184
186
|
line
|
185
187
|
}
|
@@ -195,8 +197,8 @@ module Diff::LCS::SpecHelper
|
|
195
197
|
|
196
198
|
def format_diffs(diffs)
|
197
199
|
diffs.map { |e|
|
198
|
-
if e.
|
199
|
-
e.map { |f| f.to_a.join }.join(
|
200
|
+
if e.is_a?(Array)
|
201
|
+
e.map { |f| f.to_a.join }.join(", ")
|
200
202
|
else
|
201
203
|
e.to_a.join
|
202
204
|
end
|
@@ -224,10 +226,10 @@ module Diff::LCS::SpecHelper
|
|
224
226
|
change_result.each do |line|
|
225
227
|
line = [line[0], line[2], line[1]]
|
226
228
|
case line[0]
|
227
|
-
when
|
228
|
-
line[0] =
|
229
|
-
when
|
230
|
-
line[0] =
|
229
|
+
when "<"
|
230
|
+
line[0] = ">"
|
231
|
+
when ">"
|
232
|
+
line[0] = "<"
|
231
233
|
end
|
232
234
|
new_result << line
|
233
235
|
end
|
@@ -238,9 +240,9 @@ module Diff::LCS::SpecHelper
|
|
238
240
|
new_result = []
|
239
241
|
change_result.each do |line|
|
240
242
|
case line[0]
|
241
|
-
when
|
242
|
-
new_result << [
|
243
|
-
new_result << [
|
243
|
+
when "!"
|
244
|
+
new_result << ["<", line[1], line[2]]
|
245
|
+
new_result << [">", line[1] + 1, line[2]]
|
244
246
|
else
|
245
247
|
new_result << line
|
246
248
|
end
|
@@ -317,19 +319,19 @@ module Diff::LCS::SpecHelper
|
|
317
319
|
end
|
318
320
|
|
319
321
|
def match(event)
|
320
|
-
@result << [
|
322
|
+
@result << ["=", event.old_position, event.new_position]
|
321
323
|
end
|
322
324
|
|
323
325
|
def discard_a(event)
|
324
|
-
@result << [
|
326
|
+
@result << ["<", event.old_position, event.new_position]
|
325
327
|
end
|
326
328
|
|
327
329
|
def discard_b(event)
|
328
|
-
@result << [
|
330
|
+
@result << [">", event.old_position, event.new_position]
|
329
331
|
end
|
330
332
|
|
331
333
|
def change(event)
|
332
|
-
@result << [
|
334
|
+
@result << ["!", event.old_position, event.new_position]
|
333
335
|
end
|
334
336
|
end
|
335
337
|
cb.reset
|
@@ -355,9 +357,7 @@ module Diff::LCS::SpecHelper
|
|
355
357
|
|
356
358
|
matcher :correctly_map_sequence do |s1|
|
357
359
|
match do |actual|
|
358
|
-
actual.
|
359
|
-
expect(ee).to be_nil_or_match_values(ii, s1, @s2)
|
360
|
-
}
|
360
|
+
actual.each_index { |ii| expect(actual[ii]).to be_nil_or_match_values(ii, s1, @s2) }
|
361
361
|
end
|
362
362
|
|
363
363
|
chain :to_other_sequence do |s2|
|
@@ -369,6 +369,8 @@ end
|
|
369
369
|
|
370
370
|
RSpec.configure do |conf|
|
371
371
|
conf.include Diff::LCS::SpecHelper
|
372
|
-
conf.alias_it_should_behave_like_to :it_has_behavior,
|
372
|
+
conf.alias_it_should_behave_like_to :it_has_behavior, "has behavior:"
|
373
|
+
# standard:disable Style/HashSyntax
|
373
374
|
conf.filter_run_excluding :broken => true
|
375
|
+
# standard:enable Style/HashSyntax
|
374
376
|
end
|