test/send_file.rb in cuba-sendfile-0.0.1 vs test/send_file.rb in cuba-sendfile-0.0.2
- old
+ new
@@ -1,20 +1,16 @@
require "cuba/test"
require_relative "../lib/cuba/send_file"
FILE = __dir__ + "/foo.txt"
-Cuba.plugin(Cuba::SendFile)
+Cuba.plugin(SendFile)
Cuba.define do
on root do
send_file(FILE)
end
-
- on "custom" do
- send_file(FILE, "Content-Disposition" => "disposition")
- end
end
scope do
test "sends the contents of the file" do
get "/"
@@ -27,13 +23,7 @@
get "/"
assert_equal "text/plain", last_response["Content-Type"]
assert_equal "Hello World\n".length.to_s, last_response["Content-Length"]
assert_equal File.mtime(FILE).httpdate, last_response["Last-Modified"]
- end
-
- test "sets custom header" do
- get "/custom"
-
- assert_equal "disposition", last_response["Content-Disposition"]
end
end