Sha256: 02b2f291f5640d011f04965e2e6a7cb41af707a126932b31dc16eb3027f1f00e

Contents?: true

Size: 1.1 KB

Versions: 6

Compression:

Stored size: 1.1 KB

Contents

require 'spec_helper'

SimpleCov.command_name('Nested') unless RUBY_VERSION.to_s < '1.9.0'

describe 'Nested, Unit' do

  nodule = CucumberAnalytics::Nested

  before(:each) do
    @nested_element = Object.new.extend(nodule)
  end


  it 'has a parent element - #parent_element' do
    @nested_element.should respond_to(:parent_element)
  end

  it 'can get and set its parent element - #parent_element, #parent_element=' do
    @nested_element.parent_element = :some_parent_element
    @nested_element.parent_element.should == :some_parent_element
    @nested_element.parent_element = :some_other_parent_element
    @nested_element.parent_element.should == :some_other_parent_element
  end

  it 'has access to its ancestors' do
    @nested_element.should respond_to(:get_ancestor)
  end

  it 'gets an ancestor based on type' do
    (nodule.instance_method(:get_ancestor).arity == 1).should be_true
  end

  it 'raises and exception if an unknown ancestor type is requested' do
    expect { @nested_element.get_ancestor(:bad_ancestor_type) }.to raise_exception(ArgumentError)
  end

end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
cucumber_analytics-1.5.1 spec/unit/nested_unit_spec.rb
cucumber_analytics-1.5.0 spec/unit/nested_unit_spec.rb
cucumber_analytics-1.4.2 spec/unit/nested_unit_spec.rb
cucumber_analytics-1.4.1 spec/unit/nested_unit_spec.rb
cucumber_analytics-1.4.0 spec/unit/nested_unit_spec.rb
cucumber_analytics-1.3.0 spec/unit/nested_unit_spec.rb