From 5cb33db8f33e37e827ec70502043935bb336f654 Mon Sep 17 00:00:00 2001 From: Yomi Colledge Date: Fri, 18 Jun 2010 21:10:53 +0100 Subject: [PATCH] Removed duplicate steps, which are now stored in the form validations feature --- .../plain/project_form_validation.feature | 24 ------------------- 1 file changed, 24 deletions(-) diff --git a/features/plain/project_form_validation.feature b/features/plain/project_form_validation.feature index 6fbfc537..d1e0fe5f 100644 --- a/features/plain/project_form_validation.feature +++ b/features/plain/project_form_validation.feature @@ -3,30 +3,6 @@ Feature: Must be able to deal with our projects validations on our forms As a user I want the form to be validated on the back end - Scenario: A user must input a valid title - Given I can view the projects page - When I click new projects - And we fill in the project aim with 'An aim' - And we fill in the project description with 'A short description' - Then submit the form - And the "project" "title" "input" should have an error class - - Scenario: A user must input a valid aim - Given I can view the projects page - When I click new projects - And we fill in the project title with 'WorldPeace2.0' - And we fill in the project description with 'A short description' - Then submit the form - And the "project" "aim" "input" should have an error class - - Scenario: A user must input a valid description - Given there is a project - When I click new projects - And we fill in the project title with 'WorldPeace2.0' - And we fill in the project aim with 'An aim' - Then submit the form - And the "project" "description" "input" should have an error class - Scenario: A projects title should be no less than 3 letters long Given I can view the projects page When I click new projects