summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/ct_helper.erl2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ct_helper.erl b/src/ct_helper.erl
index 044d4f4..bc0624a 100644
--- a/src/ct_helper.erl
+++ b/src/ct_helper.erl
@@ -68,6 +68,7 @@ create_static_dir(Path) ->
ok = file:write_file(Path ++ "/file.cowboy", "File with custom extension.\n"),
ok = file:write_file(Path ++ "/empty.txt", ""),
ok = file:write_file(Path ++ "/plain.txt", "Timeless space.\n"),
+ ok = file:write_file(Path ++ "/UPPER.TXT", "Uppercase file name.\n"),
ok = file:write_file(Path ++ "/style.css", "body{color:red}\n"),
ok = file:write_file(Path ++ "/index.html",
"<html><body>Hello!</body></html>\n"),
@@ -82,6 +83,7 @@ delete_static_dir(Path) ->
ok = file:delete(Path ++ "/index.html"),
ok = file:delete(Path ++ "/style.css"),
ok = file:delete(Path ++ "/plain.txt"),
+ ok = file:delete(Path ++ "/UPPER.TXT"),
ok = file:delete(Path ++ "/empty.txt"),
ok = file:delete(Path ++ "/file.cowboy"),
ok = file:delete(Path ++ "/unknown"),