mirror of
https://github.com/openSUSE/osc.git
synced 2025-09-08 05:58:43 +02:00
undelete: Migrate to pop_project_package_from_args()
INCOMPATIBLE CHANGE: It is no longer possible to specify multiple packages at once, because it was inconsistent with the rest of osc. Call osc in a cycle to undelete multiple packages instead.
This commit is contained in:
20
behave/features/undelete.feature
Normal file
20
behave/features/undelete.feature
Normal file
@@ -0,0 +1,20 @@
|
||||
Feature: `osc undelete` command
|
||||
|
||||
|
||||
# common steps for all scenarios
|
||||
Background:
|
||||
Given I set working directory to "{context.osc.temp}"
|
||||
|
||||
|
||||
@destructive
|
||||
Scenario: Run `osc undelete <project>/<package>`
|
||||
Given I execute osc with args "rdelete test:factory/test-pkgA -m 'why:delete'"
|
||||
When I execute osc with args "undelete test:factory/test-pkgA -m 'why:undelete'"
|
||||
Then the exit code is 0
|
||||
|
||||
|
||||
@destructive
|
||||
Scenario: Run `osc undelete <project>`
|
||||
Given I execute osc with args "rdelete test:factory --recursive -m 'why:delete'"
|
||||
When I execute osc with args "undelete test:factory -m 'why:undelete'"
|
||||
Then the exit code is 0
|
Reference in New Issue
Block a user