mirror of
https://github.com/chylex/Nextcloud-News.git
synced 2024-11-24 04:42:46 +01:00
17f0fc7f4a
Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
21 lines
352 B
Bash
21 lines
352 B
Bash
#!/usr/bin/env bats
|
|
|
|
# This only works with NC 26
|
|
|
|
load "helpers/settings"
|
|
load "../test_helper/bats-support/load"
|
|
load "../test_helper/bats-assert/load"
|
|
|
|
TESTSUITE="Update"
|
|
|
|
@test "[$TESTSUITE] Job status" {
|
|
run ./occ news:updater:job
|
|
|
|
assert_success
|
|
}
|
|
|
|
@test "[$TESTSUITE] Job reset" {
|
|
run ./occ news:updater:job --reset
|
|
|
|
assert_success
|
|
} |