Sha256: e6302db8f149e002b476df9b69a3940a3f21b881fbb49abc180cd3de27206b1d

Contents?: true

Size: 1.12 KB

Versions: 39

Compression:

Stored size: 1.12 KB

Contents

require File.dirname(__FILE__) + '/../spec_helper'

describe Insertion do
  describe '#before' do
    it "should place an object before another" do
      [1, 2].place(3).before(2).should == [1, 3, 2]
      [1, 2].place(3).before(1).should == [3, 1, 2]
      [1, [4], 2].place(3).before(2).should == [1, [4], 3, 2]
    end
  end
  
  describe '#after' do
    it "should place an object after another" do
      [1, 2].place(3).after(2).should == [1, 2, 3]
    end

    it "should no longer place an object after another and its subsections (0.6)" do
      [1, [2]].place(3).after(1).should == [1, 3, [2]]
    end
    
    it "should place an array after an object" do
      [1, 2, 3].place([4]).after(1).should == [1, [4], 2, 3]
    end
  end
  
  describe '#before_any' do
    it "should place an object before another anywhere inside list (including sublists)" do
      [1, 2, [3]].place(4).before_any(3).should == [1, 2, [4, 3]]
    end
  end

  describe '#after_any' do
    it "should place an object after another anywhere inside list (including sublists)" do
      [1, 2, [3]].place(4).after_any(3).should == [1, 2, [3, 4]]
    end
  end
end

Version data entries

39 entries across 39 versions & 4 rubygems

Version Path
challah-0.6.2 vendor/bundle/gems/yard-0.7.5/spec/core_ext/insertion_spec.rb
challah-0.6.1 vendor/bundle/gems/yard-0.7.5/spec/core_ext/insertion_spec.rb
challah-0.6.0 vendor/bundle/gems/yard-0.7.5/spec/core_ext/insertion_spec.rb
challah-0.5.4 vendor/bundle/gems/yard-0.7.5/spec/core_ext/insertion_spec.rb
challah-0.5.3 vendor/bundle/gems/yard-0.7.5/spec/core_ext/insertion_spec.rb
challah-0.5.2 vendor/bundle/gems/yard-0.7.5/spec/core_ext/insertion_spec.rb
challah-0.5.1 vendor/bundle/gems/yard-0.7.5/spec/core_ext/insertion_spec.rb
challah-0.5.0 vendor/bundle/gems/yard-0.7.5/spec/core_ext/insertion_spec.rb
challah-0.4.1 vendor/bundle/gems/yard-0.7.5/spec/core_ext/insertion_spec.rb
challah-0.4.0 vendor/bundle/gems/yard-0.7.5/spec/core_ext/insertion_spec.rb
challah-0.3.5 vendor/bundle/gems/yard-0.7.5/spec/core_ext/insertion_spec.rb
challah-0.3.4 vendor/bundle/gems/yard-0.7.5/spec/core_ext/insertion_spec.rb
challah-0.3.3 vendor/bundle/gems/yard-0.7.5/spec/core_ext/insertion_spec.rb
challah-0.3.2 vendor/bundle/gems/yard-0.7.5/spec/core_ext/insertion_spec.rb
challah-0.3.1 vendor/bundle/gems/yard-0.7.5/spec/core_ext/insertion_spec.rb
challah-0.3.0 vendor/bundle/gems/yard-0.7.5/spec/core_ext/insertion_spec.rb
challah-0.2.1 vendor/bundle/gems/yard-0.7.5/spec/core_ext/insertion_spec.rb
challah-0.2.0 vendor/bundle/gems/yard-0.7.5/spec/core_ext/insertion_spec.rb
yard-0.7.5 spec/core_ext/insertion_spec.rb
nutshell-crm-0.0.6.alpha vendor/bundle/gems/yard-0.7.4/spec/core_ext/insertion_spec.rb