Sha256: 6e7199bc98fa8a95ff6e30f84dc3112a17b6dc92dc1b75149312596cfd00dc9f

Contents?: true

Size: 1.31 KB

Versions: 87

Compression:

Stored size: 1.31 KB

Contents

# -*- ruby encoding: utf-8 -*-

require 'spec_helper'

describe "Diff::LCS.diff" do
  include Diff::LCS::SpecHelper::Matchers

  it "should correctly diff seq1 to seq2" do
    diff_s1_s2 = Diff::LCS.diff(seq1, seq2)
    change_diff(correct_forward_diff).should == diff_s1_s2
  end

  it "should correctly diff seq2 to seq1" do
    diff_s2_s1 = Diff::LCS.diff(seq2, seq1)
    change_diff(correct_backward_diff).should == diff_s2_s1
  end

  it "should correctly diff against an empty sequence" do
    diff = Diff::LCS.diff(word_sequence, [])
    correct_diff = [
      [ [ '-', 0, 'abcd'           ],
        [ '-', 1, 'efgh'           ],
        [ '-', 2, 'ijkl'           ],
        [ '-', 3, 'mnopqrstuvwxyz' ] ]
    ]

    change_diff(correct_diff).should == diff

    diff = Diff::LCS.diff([], word_sequence)
    correct_diff.each { |hunk| hunk.each { |change| change[0] = '+' } }
    change_diff(correct_diff).should == diff
  end

  it "should correctly diff 'xx' and 'xaxb'" do
    left = 'xx'
    right = 'xaxb'
    Diff::LCS.patch(left, Diff::LCS.diff(left, right)).should == right
  end

  it "should return an empty diff with (hello, hello)" do
    Diff::LCS.diff(hello, hello).should == []
  end

  it "should return an empty diff with (hello_ary, hello_ary)" do
    Diff::LCS.diff(hello_ary, hello_ary).should == []
  end
end

Version data entries

87 entries across 83 versions & 34 rubygems

Version Path
vagrant-unbundled-1.9.1.1 vendor/bundle/ruby/2.4.0/gems/diff-lcs-1.2.5/spec/diff_spec.rb
abaci-0.3.0 vendor/bundle/gems/diff-lcs-1.2.5/spec/diff_spec.rb
ivanvc-logstash-input-s3-3.1.1.4 vendor/local/gems/diff-lcs-1.2.5/spec/diff_spec.rb
ivanvc-logstash-input-s3-3.1.1.3 vendor/local/gems/diff-lcs-1.2.5/spec/diff_spec.rb
ivanvc-logstash-input-s3-3.1.1.2 vendor/local/gems/diff-lcs-1.2.5/spec/diff_spec.rb
gameboard-3.1.0 vendor/bundle/ruby/2.3.0/gems/diff-lcs-1.2.5/spec/diff_spec.rb
gameboard-3.0.0 vendor/bundle/ruby/2.3.0/gems/diff-lcs-1.2.5/spec/diff_spec.rb
cvss-suite-1.0.8 vendor/cache/ruby/2.2.0/gems/diff-lcs-1.2.5/spec/diff_spec.rb
tdiary-5.0.2 vendor/bundle/gems/diff-lcs-1.2.5/spec/diff_spec.rb
logstash-filter-delta-1.1.0 vendor/bundle/jruby/2.2.0/gems/diff-lcs-1.2.5/spec/diff_spec.rb
logstash-filter-delta-1.0.1 vendor/bundle/jruby/2.2.0/gems/diff-lcs-1.2.5/spec/diff_spec.rb
logstash-filter-base64-1.0.4 vendor/bundle/jruby/2.2.0/gems/diff-lcs-1.2.5/spec/diff_spec.rb
logstash-filter-base64-1.0.3 vendor/bundle/jruby/2.2.0/gems/diff-lcs-1.2.5/spec/diff_spec.rb
logstash-filter-delta-1.0.0 vendor/bundle/jruby/2.2.0/gems/diff-lcs-1.2.5/spec/diff_spec.rb
logstash-filter-base64-1.0.2 vendor/bundle/jruby/2.3.0/gems/diff-lcs-1.2.5/spec/diff_spec.rb
logstash-filter-base64-1.0.1 vendor/bundle/jruby/2.3.0/gems/diff-lcs-1.2.5/spec/diff_spec.rb
logstash-filter-base64-1.0.0 vendor/bundle/jruby/2.3.0/gems/diff-lcs-1.2.5/spec/diff_spec.rb
vagrant-unbundled-1.8.5.2 vendor/bundle/ruby/2.3.0/gems/diff-lcs-1.2.5/spec/diff_spec.rb
vagrant-unbundled-1.8.5.1 vendor/bundle/ruby/2.3.0/gems/diff-lcs-1.2.5/spec/diff_spec.rb
vagrant-unbundled-1.8.4.2 vendor/bundle/ruby/2.3.0/gems/diff-lcs-1.2.5/spec/diff_spec.rb