Displaying 1 result from an estimated 1 matches for "mystory".
Did you mean:
mystery
2008 Jun 17
1
Confused - which is the correct Story API
...ealize that Stories are ongoing work, but it would be nice if there
were something I could refer to to make sure that I am not using a
syntax that will soon be deprecated, and that I am doing "what is
right".
So for Plain text stories I believe the current SOTA syntax is...
-- text file mystory.story ---
Story: My story description
As a user
I want to buy something
So I have stuff
Scenario: user has money and buys something
Given a user has 100 dollars
etc...
-- Ruby file mystory.rb --
require File.join(File.dirname(__FILE__), "spec_helper")
steps_for(:my_steps)...