mirror of
https://github.com/openSUSE/osc.git
synced 2024-11-10 22:56:15 +01:00
39 lines
1.2 KiB
Gherkin
39 lines
1.2 KiB
Gherkin
|
Feature: `osc addchannels` command
|
||
|
|
||
|
|
||
|
# common steps for all scenarios
|
||
|
Background:
|
||
|
Given I set working directory to "{context.osc.temp}"
|
||
|
|
||
|
|
||
|
Scenario: Run `osc addchannels <project> <package>`
|
||
|
When I execute osc with args "addchannels test:factory test-pkgA"
|
||
|
Then stdout is
|
||
|
"""
|
||
|
Adding channels to project: 'test:factory' package: 'test-pkgA'
|
||
|
"""
|
||
|
|
||
|
|
||
|
Scenario: Run `osc addchannels <project>/<package>`
|
||
|
When I execute osc with args "addchannels test:factory/test-pkgA"
|
||
|
Then stdout is
|
||
|
"""
|
||
|
Adding channels to project: 'test:factory' package: 'test-pkgA'
|
||
|
"""
|
||
|
|
||
|
|
||
|
Scenario: Run `osc addchannels <project> <package> --enable-all`
|
||
|
When I execute osc with args "addchannels test:factory test-pkgA --enable-all"
|
||
|
Then stdout is
|
||
|
"""
|
||
|
Adding channels to project: 'test:factory' package: 'test-pkgA' options: enable-all
|
||
|
"""
|
||
|
|
||
|
|
||
|
Scenario: Run `osc addchannels <project> <package> --skip-disabled`
|
||
|
When I execute osc with args "addchannels test:factory test-pkgA --skip-disabled"
|
||
|
Then stdout is
|
||
|
"""
|
||
|
Adding channels to project: 'test:factory' package: 'test-pkgA' options: skip-disabled
|
||
|
"""
|