Sha256: b51aaacac62c7d39767e0b6993ab1286deb08f1663c2851433ca3c02a000bf76
Contents?: true
Size: 1.84 KB
Versions: 2
Compression:
Stored size: 1.84 KB
Contents
require 'spec_helper' SimpleCov.command_name('Scenario') unless RUBY_VERSION.to_s < '1.9.0' describe 'Scenario, Unit' do clazz = CucumberAnalytics::Scenario it_should_behave_like 'a feature element', clazz it_should_behave_like 'a nested element', clazz it_should_behave_like 'a containing element', clazz it_should_behave_like 'a tagged element', clazz it_should_behave_like 'a bare bones element', clazz it_should_behave_like 'a prepopulated element', clazz it_should_behave_like 'a test element', clazz it_should_behave_like 'a sourced element', clazz it_should_behave_like 'a raw element', clazz it 'can be parsed from stand alone text' do source = 'Scenario: test scenario' expect { @element = clazz.new(source) }.to_not raise_error # Sanity check in case instantiation failed in a non-explosive manner @element.name.should == 'test scenario' end before(:each) do @scenario = clazz.new end it 'contains only steps' do steps = [:step_1, :step_2] everything = steps @scenario.steps = steps @scenario.contains.should =~ everything end context 'scenario output edge cases' do it 'is a String' do @scenario.to_s.should be_a(String) end it 'can output an empty scenario' do expect { @scenario.to_s }.to_not raise_error end it 'can output a scenario that has only a name' do @scenario.name = 'a name' expect { @scenario.to_s }.to_not raise_error end it 'can output a scenario that has only a description' do @scenario.description_text = 'a description' expect { @scenario.to_s }.to_not raise_error end it 'can output a scenario that has only a tags' do @scenario.tags = ['a tag'] expect { @scenario.to_s }.to_not raise_error end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
cucumber_analytics-1.5.1 | spec/unit/scenario_unit_spec.rb |
cucumber_analytics-1.5.0 | spec/unit/scenario_unit_spec.rb |