Commit ced54383831a7d25ef49a0dce6fa8d05ea625fa0

Authored by Rafael Manzo
1 parent c36f36ab

Acceptance test for repository deletion

Showing 1 changed file with 17 additions and 0 deletions   Show diff stats
features/repository/delete.feature 0 → 100644
... ... @@ -0,0 +1,17 @@
  1 +Feature: Project Deletion
  2 + In order to be able to remove repositories
  3 + As a regular user
  4 + The system should have an interface to it
  5 +
  6 + @kalibro_restart
  7 + Scenario: Should delete a project that I own
  8 + Given I am a regular user
  9 + And I am signed in
  10 + And I own a sample project
  11 + And I have a sample configuration with native metrics
  12 + And I have a sample repository within the sample project named "QtCalculator"
  13 + And I start to process that repository
  14 + And I wait up for a ready processing
  15 + When I visit the repository show page
  16 + And I click the Destroy link
  17 + Then I should see "There are no repositories yet!"
0 18 \ No newline at end of file
... ...