Sha256: 281ba943d1c9b09d99ac3275733dc5fa113e7bd147923627b5be3a8aee883026

Contents?: true

Size: 1.93 KB

Versions: 5

Compression:

Stored size: 1.93 KB

Contents

require 'spec_helper'

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

describe 'TableRow, Integration' do

  context 'getting stuff' do

    before(:each) do
      source = ['Feature: Test feature',
                '',
                '  Scenario: Test test',
                '    * a step:',
                '      | a | table |']
      source = source.join("\n")

      file_path = "#{@default_file_directory}/table_row_test_file.feature"
      File.open(file_path, 'w') { |file| file.write(source) }

      @directory = CucumberAnalytics::Directory.new(@default_file_directory)
      @table_row = @directory.feature_files.first.features.first.tests.first.steps.first.block.row_elements.first
    end


    it 'can get its directory' do
      directory = @table_row.get_ancestor(:directory)

      directory.should equal @directory
    end

    it 'can get its feature file' do
      feature_file = @table_row.get_ancestor(:feature_file)

      feature_file.should equal @directory.feature_files.first
    end

    it 'can get its feature' do
      feature = @table_row.get_ancestor(:feature)

      feature.should equal @directory.feature_files.first.features.first
    end

    it 'can get its test' do
      test = @table_row.get_ancestor(:test)

      test.should equal @directory.feature_files.first.features.first.tests.first
    end

    it 'can get its step' do
      step = @table_row.get_ancestor(:step)

      step.should equal @directory.feature_files.first.features.first.tests.first.steps.first
    end

    it 'can get its table' do
      table = @table_row.get_ancestor(:table)

      table.should equal @directory.feature_files.first.features.first.tests.first.steps.first.block
    end

    it 'returns nil if it does not have the requested type of ancestor' do
      example = @table_row.get_ancestor(:example)

      example.should be_nil
    end

  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
cucumber_analytics-1.5.1 spec/integration/table_row_integration_spec.rb
cucumber_analytics-1.5.0 spec/integration/table_row_integration_spec.rb
cucumber_analytics-1.4.2 spec/integration/table_row_integration_spec.rb
cucumber_analytics-1.4.1 spec/integration/table_row_integration_spec.rb
cucumber_analytics-1.4.0 spec/integration/table_row_integration_spec.rb