From 07ed577eba341f0ff0d7eebf4c1c2cc23083cba7 Mon Sep 17 00:00:00 2001 From: Austin Ziegler Date: Sun, 27 Jan 2019 00:03:42 -0500 Subject: =?UTF-8?q?Revert=20PR#47=20"Add=20#to=5Fary=20to=20Diff::LCS::Cha?= =?UTF-8?q?nge=E2=80=A6"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commits 01e0cae and 3b4d2be because they introduce fatally breaking changes in the tests that were hidden by broken CI. * 01e0cae: Add #to_ary to Diff::LCS::Change and Diff::LCS::ContextChange [Akinori MUSHA] * 3b4d2be: Mention in rdoc that Diff::LCS::ContextChange can be converted to an array [Akinori MUSHA] --- spec/change_spec.rb | 24 ------------------------ 1 file changed, 24 deletions(-) (limited to 'spec') diff --git a/spec/change_spec.rb b/spec/change_spec.rb index 5128dc1..dfe385f 100644 --- a/spec/change_spec.rb +++ b/spec/change_spec.rb @@ -62,28 +62,4 @@ describe Diff::LCS::Change do it { should_not be_finished_a } it { should be_finished_b } end - - describe "as array" do - it "should be converted" do - action, position, element = described_class.new('!', 0, 'element') - expect(action).to eq '!' - expect(position).to eq 0 - expect(element).to eq 'element' - end - end -end - -describe Diff::LCS::ContextChange do - describe "as array" do - it "should be converted" do - action, (old_position, old_element), (new_position, new_element) = - described_class.new('!', 1, 'old_element', 2, 'new_element') - - expect(action).to eq '!' - expect(old_position).to eq 1 - expect(old_element).to eq 'old_element' - expect(new_position).to eq 2 - expect(new_element).to eq 'new_element' - end - end end -- cgit v1.2.1