bashtop/test/basic_test.bats

17 lines
303 B
Plaintext
Raw Normal View History

2020-06-01 04:31:09 +00:00
#!/usr/bin/env bats
load 'libs/bats-support/load'
load 'libs/bats-assert/load'
load test_helper
@test "sourcing works, by checking if $system is set" {
run echo $system
refute_output ""
}
@test "#get_themes populates themes" {
get_themes
assert_success
assert [ ${#themes[@]} -gt 0 ]
}