diff --git a/features/sessions.feature b/features/sessions.feature index a8cea4c..7e53be0 100644 --- a/features/sessions.feature +++ b/features/sessions.feature @@ -1,4 +1,4 @@ -Feature: User +Feature: Session So that I can manage my own content As a listener @@ -15,9 +15,3 @@ Feature: User Then I should be redirected to the sign in page When I submit valid credentials Then I should be redirected to the home page - - Scenario: User registration - Given I go to the home page - When I follow the sign up link - And I fill in the sign up form - Then I should be redirected to the home page diff --git a/features/user.feature b/features/user.feature new file mode 100644 index 0000000..f09a17a --- /dev/null +++ b/features/user.feature @@ -0,0 +1,11 @@ +Feature: User + + So that I can use the application + As a visitor + I want to register + + Scenario: User registration + Given I go to the home page + When I follow the sign up link + And I fill in the sign up form + Then I should be redirected to the home page