features/push_features.feature in wally-0.0.33 vs features/push_features.feature in wally-0.0.34

- old
+ new

@@ -3,18 +3,18 @@ As a developer I want to be able to push features to an endpoint Scenario: Push features without authentication Given I don't have a .wally authorisation file - When I put data to /features with the authentication code + When I put data to /my_project_name/features with the authentication code Then I should get a 403 http status Scenario: Push features with authentication Given I have a .wally authentication file - When I put data to /features with the authentication code + When I put data to /my_project_name/features with the authentication code Then I should get a 201 http status Scenario: Pushed features show up on home page Given I have a .wally authentication file - When I put data to /features with the authentication code - And I visit the home page + When I put data to /my_project_name/features with the authentication code + And I visit "my_project_name" page Then I should see the uploaded feature