1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-09-21 17:56:19 +02:00
github.com_openSUSE_osc/behave/features/add.feature

24 lines
803 B
Gherkin
Raw Normal View History

2022-01-24 09:57:40 +01:00
Feature: `osc add` command
Scenario: Run `osc add` on a new file in a package
Given I set working directory to "{context.osc.temp}"
And I execute osc with args "checkout test:factory test-pkgA"
And I set working directory to "{context.osc.temp}/test:factory/test-pkgA"
And I copy file "{context.fixtures}/pac/test-pkgA-1.spec" to "{context.osc.temp}/test:factory/test-pkgA/new_file"
2022-01-24 09:57:40 +01:00
And I execute osc with args "status --verbose"
And stdout is
"""
? new_file
test-pkgA.changes
test-pkgA.spec
"""
When I execute osc with args "add new_file"
And I execute osc with args "status --verbose"
Then stdout is
"""
A new_file
test-pkgA.changes
test-pkgA.spec
"""