mirror of
https://github.com/amigan/rustypaste-pretty.git
synced 2024-11-21 11:59:48 -05:00
19 lines
331 B
Bash
Executable file
19 lines
331 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
content="test data"
|
|
|
|
setup() {
|
|
echo "$content" > file
|
|
}
|
|
|
|
run_test() {
|
|
file_url=$(curl -s -F "file=@file" localhost:8000)
|
|
test "$file_url" = "http://localhost:8000/file.txt"
|
|
test "$content" = "$(cat upload/file.txt)"
|
|
test "$content" = "$(curl -s $file_url)"
|
|
}
|
|
|
|
teardown() {
|
|
rm file
|
|
rm -r upload
|
|
}
|