mirror of
https://github.com/denisidoro/navi
synced 2024-11-22 03:23:05 +00:00
8 lines
186 B
Bash
8 lines
186 B
Bash
#!/usr/bin/env bash
|
|
|
|
assert_docker_cheat() {
|
|
cheat::find | grep -q "docker.cheat"
|
|
}
|
|
|
|
test::set_suite "cheat"
|
|
test::run "We can find at least one known cheatsheet" assert_docker_cheat
|