I'm using Cucumber to send in JSON to some API actions. In one instance, I need to know the ID of an object that was built prior to the API call and pass that ID in.
I want to do this:
Scenario: Creating a print from an existing document
Given I am logged in as "foo@localhost.localdomain"
And I have already built a document
When I POST /api/prints with data:
"""
{
"documentId":"#{@document.id}",
"foo":"bar",
"etc":"etc"
}
"""
Then check things
Which doesn't work, because the """ string doesn't interpolate variables like a double-quoted string would. The I have already built a document step builds the @document object, so I don't know ahead of time what my ID will be. If it matters, I'm using MongoDB with mongoid, and my efforts to manually set an ID have proven fruitless.
Is there a clean way to accomplish this?
Environment:
ruby: 1.8.7
rails: 3.0.1
cucumber: 0.9.4
cucumber-rails: 0.3.2