summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorJon Rowe <hello@jonrowe.co.uk>2013-04-11 17:27:30 +1000
committerJon Rowe <hello@jonrowe.co.uk>2013-04-11 17:27:30 +1000
commitc1373fd0c4e9e398d2f474376e99500ef882d856 (patch)
tree1eb87fcad1de6c7bd856b2daf869c9dc1d5f1e6c /spec
parent81367e66224e9fd0af4752f67583460df6422369 (diff)
downloaddiff-lcs-c1373fd0c4e9e398d2f474376e99500ef882d856.tar.gz
fix indentation of examples
Diffstat (limited to 'spec')
-rw-r--r--spec/hunk_spec.rb59
1 files changed, 27 insertions, 32 deletions
diff --git a/spec/hunk_spec.rb b/spec/hunk_spec.rb
index 282946b..dc6f532 100644
--- a/spec/hunk_spec.rb
+++ b/spec/hunk_spec.rb
@@ -15,48 +15,44 @@ describe "Diff::LCS::Hunk" do
let(:hunk) { Diff::LCS::Hunk.new(old_data, new_data, pieces[0], 3, 0) }
it 'should be able to produce a unified diff from the two pieces' do
- expected =
-(<<-EOD.encode('UTF-16LE').chomp)
-@@ -1,2 +1,2 @@
--Tu avec carté {count} itém has
-+Tu avec carte {count} item has
-EOD
+ expected = (<<-EOD.gsub(/^\s+/,'').encode('UTF-16LE').chomp)
+ @@ -1,2 +1,2 @@
+ -Tu avec carté {count} itém has
+ +Tu avec carte {count} item has
+ EOD
expect(hunk.diff(:unified).to_s == expected).to eql true
end
it 'should be able to produce a context diff from the two pieces' do
- expected =
-(<<-EOD.encode('UTF-16LE').chomp)
-***************
-*** 1,2 ****
-!Tu avec carté {count} itém has
---- 1,2 ----
-!Tu avec carte {count} item has
-EOD
+ expected = (<<-EOD.gsub(/^\s+/,'').encode('UTF-16LE').chomp)
+ ***************
+ *** 1,2 ****
+ !Tu avec carté {count} itém has
+ --- 1,2 ----
+ !Tu avec carte {count} item has
+ EOD
expect(hunk.diff(:context).to_s == expected).to eql true
end
it 'should be able to produce an old diff from the two pieces' do
- expected =
-(<<-EOD.encode('UTF-16LE').chomp)
-1,2c1,2
-< Tu avec carté {count} itém has
----
-> Tu avec carte {count} item has
+ expected = (<<-EOD.gsub(/^ +/,'').encode('UTF-16LE').chomp)
+ 1,2c1,2
+ < Tu avec carté {count} itém has
+ ---
+ > Tu avec carte {count} item has
-EOD
+ EOD
expect(hunk.diff(:old).to_s == expected).to eql true
end
it 'should be able to produce a reverse ed diff from the two pieces' do
- expected =
-(<<-EOD.encode('UTF-16LE').chomp)
-c1,2
-Tu avec carte {count} item has
-.
+ expected = (<<-EOD.gsub(/^ +/,'').encode('UTF-16LE').chomp)
+ c1,2
+ Tu avec carte {count} item has
+ .
-EOD
+ EOD
expect(hunk.diff(:reverse_ed).to_s == expected).to eql true
end
@@ -64,11 +60,10 @@ EOD
let(:old_data) { [] }
it 'should be able to produce a unified diff' do
- expected =
-(<<-EOD.encode('UTF-16LE').chomp)
-@@ -1 +1,2 @@
-+Tu avec carte {count} item has
-EOD
+ expected = (<<-EOD.gsub(/^\s+/,'').encode('UTF-16LE').chomp)
+ @@ -1 +1,2 @@
+ +Tu avec carte {count} item has
+ EOD
expect(hunk.diff(:unified).to_s == expected).to eql true
end
end