Re: [jbehave-user] Maping stories at the senario level

2014-07-28 Thread Mauro Talevi
Hi Brent, this feature is not currently supported.It actually does a first pass trying to match the story and then a second pass trying to match the scenarios. It may not be the best way to do it so we could rethink it trying do match the scenarios directly and inherit from the story

Re: [jbehave-user] Are there plans to provide a story-specific timeout feature in JBehave?

2014-07-28 Thread Iulian Greculescu
Hi Dan,  We achieve this by having an AbstractStory extending JUnitStory in which we provided a protected getStoryTimeout() that returns a DEFAULT_TIMEOUT. Whenever we want a different timeout we override the getStoryTimeout() method from in the ConcreteStory.  Then in our bootstrapping custom