diff options
author | Austin Ziegler <austin@zieglers.ca> | 2022-07-05 15:43:30 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-05 15:43:30 -0400 |
commit | cab33a91e2894558b962b4b2236a213c6d63c54e (patch) | |
tree | fc14bc4c8a44e20026e1252a8cd435907d412ee1 /spec/hunk_spec.rb | |
parent | 3062997fbbe19cb6099a65a5dbcd0aba7b9b17c7 (diff) | |
parent | 0270cb87e09dd444ad6822a777bb7999fd6f6e85 (diff) | |
download | diff-lcs-main.tar.gz |
Switch to standardrb formatting
Diffstat (limited to 'spec/hunk_spec.rb')
-rw-r--r-- | spec/hunk_spec.rb | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/spec/hunk_spec.rb b/spec/hunk_spec.rb index b3616bf..c52a6fd 100644 --- a/spec/hunk_spec.rb +++ b/spec/hunk_spec.rb @@ -1,18 +1,18 @@ # frozen_string_literal: true -require 'spec_helper' +require "spec_helper" if String.method_defined?(:encoding) - require 'diff/lcs/hunk' + require "diff/lcs/hunk" describe Diff::LCS::Hunk do - let(:old_data) { ['Tu a un carté avec {count} itéms'.encode('UTF-16LE')] } - let(:new_data) { ['Tu a un carte avec {count} items'.encode('UTF-16LE')] } - let(:pieces) { Diff::LCS.diff old_data, new_data } - let(:hunk) { Diff::LCS::Hunk.new(old_data, new_data, pieces[0], 3, 0) } + let(:old_data) { ["Tu a un carté avec {count} itéms".encode("UTF-16LE")] } + let(:new_data) { ["Tu a un carte avec {count} items".encode("UTF-16LE")] } + let(:pieces) { Diff::LCS.diff old_data, new_data } + let(:hunk) { Diff::LCS::Hunk.new(old_data, new_data, pieces[0], 3, 0) } - it 'produces a unified diff from the two pieces' do - expected = <<-EXPECTED.gsub(/^\s+/, '').encode('UTF-16LE').chomp + it "produces a unified diff from the two pieces" do + expected = <<-EXPECTED.gsub(/^\s+/, "").encode("UTF-16LE").chomp @@ -1 +1 @@ -Tu a un carté avec {count} itéms +Tu a un carte avec {count} items @@ -21,8 +21,8 @@ if String.method_defined?(:encoding) expect(hunk.diff(:unified)).to eq(expected) end - it 'produces a unified diff from the two pieces (last entry)' do - expected = <<-EXPECTED.gsub(/^\s+/, '').encode('UTF-16LE').chomp + it "produces a unified diff from the two pieces (last entry)" do + expected = <<-EXPECTED.gsub(/^\s+/, "").encode("UTF-16LE").chomp @@ -1 +1 @@ -Tu a un carté avec {count} itéms +Tu a un carte avec {count} items @@ -32,8 +32,8 @@ if String.method_defined?(:encoding) expect(hunk.diff(:unified, true)).to eq(expected) end - it 'produces a context diff from the two pieces' do - expected = <<-EXPECTED.gsub(/^\s+/, '').encode('UTF-16LE').chomp + it "produces a context diff from the two pieces" do + expected = <<-EXPECTED.gsub(/^\s+/, "").encode("UTF-16LE").chomp *************** *** 1 **** ! Tu a un carté avec {count} itéms @@ -44,8 +44,8 @@ if String.method_defined?(:encoding) expect(hunk.diff(:context)).to eq(expected) end - it 'produces an old diff from the two pieces' do - expected = <<-EXPECTED.gsub(/^ +/, '').encode('UTF-16LE').chomp + it "produces an old diff from the two pieces" do + expected = <<-EXPECTED.gsub(/^ +/, "").encode("UTF-16LE").chomp 1c1 < Tu a un carté avec {count} itéms --- @@ -56,8 +56,8 @@ if String.method_defined?(:encoding) expect(hunk.diff(:old)).to eq(expected) end - it 'produces a reverse ed diff from the two pieces' do - expected = <<-EXPECTED.gsub(/^ +/, '').encode('UTF-16LE').chomp + it "produces a reverse ed diff from the two pieces" do + expected = <<-EXPECTED.gsub(/^ +/, "").encode("UTF-16LE").chomp c1 Tu a un carte avec {count} items . @@ -67,11 +67,11 @@ if String.method_defined?(:encoding) expect(hunk.diff(:reverse_ed)).to eq(expected) end - context 'with empty first data set' do + context "with empty first data set" do let(:old_data) { [] } - it 'produces a unified diff' do - expected = <<-EXPECTED.gsub(/^\s+/, '').encode('UTF-16LE').chomp + it "produces a unified diff" do + expected = <<-EXPECTED.gsub(/^\s+/, "").encode("UTF-16LE").chomp @@ -1 +1,2 @@ +Tu a un carte avec {count} items EXPECTED |