mirror of
https://github.com/openSUSE/osc.git
synced 2024-12-24 17:16:12 +01:00
rdiff: Fix traceback when new project is not specified
This commit is contained in:
parent
9d67274bf3
commit
286db02a40
26
behave/features/rdiff.feature
Normal file
26
behave/features/rdiff.feature
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
Feature: `osc rdiff` command
|
||||||
|
|
||||||
|
|
||||||
|
# common steps for all scenarios
|
||||||
|
Background:
|
||||||
|
Given I set working directory to "{context.osc.temp}"
|
||||||
|
|
||||||
|
|
||||||
|
Scenario: Run `osc rdiff <project>/<package> <target-project>/<target-package>`
|
||||||
|
When I execute osc with args "rdiff test:factory/test-pkgA test:factory/test-pkgA"
|
||||||
|
Then the exit code is 0
|
||||||
|
|
||||||
|
|
||||||
|
Scenario: Run `osc rdiff <project>/<package> <target-project>`
|
||||||
|
When I execute osc with args "rdiff test:factory/test-pkgA test:factory"
|
||||||
|
Then the exit code is 0
|
||||||
|
|
||||||
|
|
||||||
|
Scenario: Run `osc rdiff <project>/<package>`
|
||||||
|
When I execute osc with args "rdiff test:factory/test-pkgA"
|
||||||
|
Then the exit code is 0
|
||||||
|
|
||||||
|
|
||||||
|
Scenario: Run `osc rdiff <project>/<package> --change`
|
||||||
|
When I execute osc with args "rdiff test:factory/test-pkgA --change=1"
|
||||||
|
Then the exit code is 0
|
@ -4200,6 +4200,9 @@ Please submit there instead, or use --nodevelproject to force direct submission.
|
|||||||
)
|
)
|
||||||
ensure_no_remaining_args(args)
|
ensure_no_remaining_args(args)
|
||||||
|
|
||||||
|
if not new_project:
|
||||||
|
new_project = old_project
|
||||||
|
|
||||||
if not new_package:
|
if not new_package:
|
||||||
new_package = old_package
|
new_package = old_package
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user