mirror of
https://github.com/denisidoro/navi
synced 2025-02-16 20:48:28 +00:00
8 lines
193 B
Bash
8 lines
193 B
Bash
#!/usr/bin/env bash
|
|
|
|
assert_docker_cheat() {
|
|
cheat::find | test::contains "docker.cheat"
|
|
}
|
|
|
|
test::set_suite "cheat"
|
|
test::run "We can find at least one known cheatsheet" assert_docker_cheat
|