Sha256: ca310447110c76ac221ce94d6fbe4cd5d85bfc982feb592fc718bfc8262b852f
Contents?: true
Size: 1.13 KB
Versions: 4
Compression:
Stored size: 1.13 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 end
Version data entries
4 entries across 4 versions & 1 rubygems