Sha256: 39e868907a972851da4de6d7dc0e8036639280ef2918a163fad7dee2c8d5d5a4
Contents?: true
Size: 1.92 KB
Versions: 5
Compression:
Stored size: 1.92 KB
Contents
require 'spec_helper' SimpleCov.command_name('Tag') unless RUBY_VERSION.to_s < '1.9.0' describe 'Tag, Integration' do context 'getting stuff' do before(:each) do source = ['@feature_tag', 'Feature: Test feature', '', ' Scenario Outline: Test test', ' * a step', '', ' @example_tag', ' Examples: Test example', ' | a param |'] source = source.join("\n") file_path = "#{@default_file_directory}/tag_test_file.feature" File.open(file_path, 'w') { |file| file.write(source) } @directory = CucumberAnalytics::Directory.new(@default_file_directory) @tag = @directory.feature_files.first.features.first.tests.first.examples.first.tag_elements.first @high_level_tag = @directory.feature_files.first.features.first.tag_elements.first end it 'can get its directory' do directory = @tag.get_ancestor(:directory) directory.should equal @directory end it 'can get its feature file' do feature_file = @tag.get_ancestor(:feature_file) feature_file.should equal @directory.feature_files.first end it 'can get its feature' do feature = @tag.get_ancestor(:feature) feature.should equal @directory.feature_files.first.features.first end it 'can get its test' do test = @tag.get_ancestor(:test) test.should equal @directory.feature_files.first.features.first.tests.first end it 'can get its example' do example = @tag.get_ancestor(:example) example.should equal @directory.feature_files.first.features.first.tests.first.examples.first end it 'returns nil if it does not have the requested type of ancestor' do example = @high_level_tag.get_ancestor(:example) example.should be_nil end end end
Version data entries
5 entries across 5 versions & 1 rubygems