Displaying 1 result from an estimated 1 matches for "job_parti".
Did you mean:
jb_part
2008 Jan 14
6
RSpec stories introduction
...-->
Story: open a new job
As an authorized user
I want to open a new job
So that I can do work
For a client
Scenario: client is active
Given client exists in database
And client status is active
When I add a new job
Then a job number is automatically assigned
And a job_parties entry is added for job and client with type "bill"
And job_parties status is set to "quote"
Scenario: client is held for administrative approval
...
<---
I infer that I should also create a file called new_job.rb in stories and
that it should contain:
--->
wit...