Hi, I'm testing an workflow application where many stories are dependent on others.
Thus, there are many cases where two stories depend on the same story but with different parameters. One very simple example is the stories that depend on the login story. The following case illustrate the scenario: request_registration() -> authentication(user1,pass1) request_approval() -> authentication(manager1,pass2) '->' represents the dependency relationship between stories and the parenthesis represent the parameters passed from one story to another. So, in the example above, the story request_registration depends on the authentication story passing two parameters (a user and his password). Note that the request_approval story also depends on the authentication story, but with different parameters. Does any one have this same need? Does jbehave already implements something that can be used to get this behavior? Thanks! Paulo Sérgio.
