require File.dirname(__FILE__) + '/story_helper' module Spec module Story describe Scenario do it 'should not raise an error if no body is supplied' do # given story = StoryBuilder.new.to_story # when error = exception_from { Scenario.new story, 'name' } # then error.should be_nil end end end end