Ruby on Rails を使用して Web サイトを開発しようとしていますが、BDD の概念は初めてです。私は Ruby on Rails チュートリアルと RSpec ブックの両方に取り組み、独力で取り組み始めましたが、最初の機能に関するフィードバックを得たいと考えていました。
Feature: User Signup
As a user (anyone who may use the system, to include persons outside the unit)
I want to sign up
So that I can access the website
Scenario: sign up
Given I have not yet signed up
When I go the signup page
Then I should be redirected to the signup page
私はここで正しい軌道に乗っていますか..?