removing without skeleton files string from the user creation steps

This commit is contained in:
Niraj Acharya
2024-11-29 09:39:21 +05:45
parent a265fcbe46
commit c98841904d
219 changed files with 663 additions and 804 deletions

View File

@@ -828,25 +828,6 @@ trait WebDav {
);
}
/**
* @Then /^user "([^"]*)" should be able to access a skeleton file$/
*
* @param string $user
*
* @return void
*/
public function userShouldBeAbleToAccessASkeletonFile(string $user):void {
$user = $this->getActualUsername($user);
$response = $this->downloadFileAsUserUsingPassword($user, "textfile0.txt");
$actualStatus = $response->getStatusCode();
Assert::assertEquals(
200,
$actualStatus,
"Expected status code to be '200', but got '$actualStatus'"
);
$this->checkDownloadedContentMatches("ownCloud test text file 0\n", '', $response);
}
/**
* @Then the size of the downloaded file should be :size bytes
*