0
私は失敗しているステップ定義を持っています。私はそれがで失敗している「とその機能に問題がある」私はそれがみんなのためのステップの定義を書くにはどうすればよい(タイトルで未定義のローカル変数)キュウリのステップ定義に失敗しました
Feature: Viewing issue
In order to view the issues for a feature
As a user
I want to see them on that feature's page
Background:
Given there is a release called "Confluence"
And that release has a feature:
| title | description |
| Make it shiny! | Gradients! Starbursts! Oh my! |
And that feature has a issue:
| title | description |
| First Issue | This is a first issue. |
And I am on the homepage
Scenario: Viewing issue for a given feature
When I follow "Confluence"
Then I should see "Standards compliance"
When I follow "Standards compliance"
Then I should see "First Issue"
And I should see "This is a first issue."
を、以下の機能から
。
これは私が機能定義に持っているものであり、それは素晴らしい作品が、私は問題のオブジェクトに対して同じことをやってみました、それはあなたがあなたの中でインスタンス変数を使用しないでください
Given /^that release has a feature:$/ do |table|
table.hashes.each do |attributes|
@release.features.create!(attributes)
end
end
「その機能には問題があります」というステップ定義があります。 –