Sha256: f3c9a56af924c19862c09ccc747636029411bc76bcfc019c2618716ff9abb6c0

Contents?: true

Size: 1.35 KB

Versions: 109

Compression:

Stored size: 1.35 KB

Contents

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

describe Stack do
  
  before(:each) do
    @stack = Stack.new
  end

  describe "(empty)" do

    it { @stack.should be_empty }
  
    it_should_behave_like "non-full Stack"
  
    it "should complain when sent #peek" do
      lambda { @stack.peek }.should raise_error(StackUnderflowError)
    end
  
    it "should complain when sent #pop" do
      lambda { @stack.pop }.should raise_error(StackUnderflowError)
    end

  end

  describe "(with one item)" do
    
    before(:each) do
      @stack.push 3
      @last_item_added = 3
    end

    it_should_behave_like "non-empty Stack"
    it_should_behave_like "non-full Stack"

  end

  describe "(with one item less than capacity)" do
    
    before(:each) do
      (1..9).each { |i| @stack.push i }
      @last_item_added = 9
    end
  
    it_should_behave_like "non-empty Stack"
    it_should_behave_like "non-full Stack"
  end

  describe "(full)" do
    
    before(:each) do
      (1..10).each { |i| @stack.push i }
      @last_item_added = 10
    end

    it { @stack.should be_full }  

    it_should_behave_like "non-empty Stack"

    it "should complain on #push" do
      lambda { @stack.push Object.new }.should raise_error(StackOverflowError)
    end
  
  end

end

Version data entries

109 entries across 109 versions & 12 rubygems

Version Path
typo-5.0.3.98.1 vendor/plugins/rspec/examples/pure/stack_spec_with_nested_example_groups.rb
typo-5.0.3.98 vendor/plugins/rspec/examples/pure/stack_spec_with_nested_example_groups.rb
typo-5.0 vendor/plugins/rspec/examples/pure/stack_spec_with_nested_example_groups.rb
typo-5.1.1 vendor/plugins/rspec/examples/pure/stack_spec_with_nested_example_groups.rb
typo-5.1.2 vendor/plugins/rspec/examples/pure/stack_spec_with_nested_example_groups.rb
typo-5.1.3 vendor/plugins/rspec/examples/pure/stack_spec_with_nested_example_groups.rb
typo-5.1.98 vendor/plugins/rspec/examples/pure/stack_spec_with_nested_example_groups.rb
typo-5.1 vendor/plugins/rspec/examples/pure/stack_spec_with_nested_example_groups.rb
typo-5.2 vendor/plugins/rspec/examples/pure/stack_spec_with_nested_example_groups.rb