mirror of
https://github.com/amigan/rustypaste-pretty.git
synced 2024-11-22 04:19:47 -05:00
17 lines
177 B
Bash
17 lines
177 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
landing_page="awesome_landing"
|
||
|
|
||
|
setup() {
|
||
|
:;
|
||
|
}
|
||
|
|
||
|
run_test() {
|
||
|
result=$(curl -s localhost:8000)
|
||
|
test "$landing_page" = "$result"
|
||
|
}
|
||
|
|
||
|
teardown() {
|
||
|
:;
|
||
|
}
|