21 lines
276 B
Gherkin
21 lines
276 B
Gherkin
|
Feature: sharing
|
||
|
Background:
|
||
|
Given using api version "1"
|
||
|
|
||
|
Scenario: moving a file
|
||
|
Given As an "admin"
|
||
|
And user "user0" exists
|
||
|
When User "user0" moves file "/textfile0.txt" to "/FOLDER/textfile0.txt"
|
||
|
Then the HTTP status code should be "201"
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|