giant massive dep upgrade and dialyxir-found error emporium (#371)
[akkoma] / test / pleroma / web / plugs / instance_static_test.exs
index 46f2ca6b1e5c6efd25813535fb8cdafd76705236..aa5dda4d14507348c5a5c2a26de495de32774d42 100644 (file)
@@ -45,21 +45,4 @@ defmodule Pleroma.Web.Plugs.InstanceStaticTest do
     index = get(conn, "/")
     assert html_response(index, 200) == "from instance static"
   end
-
-  test "overrides any file in static/static" do
-    bundled_index = get(build_conn(), "/static/terms-of-service.html")
-
-    assert html_response(bundled_index, 200) ==
-             File.read!("priv/static/static/terms-of-service.html")
-
-    File.mkdir!(@dir <> "/static")
-    File.write!(@dir <> "/static/terms-of-service.html", "plz be kind")
-
-    index = get(build_conn(), "/static/terms-of-service.html")
-    assert html_response(index, 200) == "plz be kind"
-
-    File.write!(@dir <> "/static/kaniini.html", "<h1>rabbit hugs as a service</h1>")
-    index = get(build_conn(), "/static/kaniini.html")
-    assert html_response(index, 200) == "<h1>rabbit hugs as a service</h1>"
-  end
 end