ОК, исходя из того, что вы сказали, вы можете сделать это:
Background: Create verses
Given the following verses exist:
|number|text |
|2999 |hello|
|2998 |hello|
|2997 |hello|
|2996 |hello|
Scenario: A user sees only verses in their reading plan
Given I am signed in as the Reader "Rodreegez"
And I have reading recomendations
When I follow "Read"
Then I should see the following verses:
|number|text |
|2999 |hello|
|2998 |hello|
And I should not see the following verses:
|number|text |
|2997 |hello|
|2996 |hello|
Конечно, это скорее связано с созданием стихов из модели, используя что-то вроде Factory Girl. Это будет возможно?