Last-Modified header is not needed anymore

This commit is contained in:
Garret Alfert
2014-01-09 21:00:13 +01:00
parent 8073eec851
commit 38e69f1423
4 changed files with 0 additions and 57 deletions

View File

@@ -26,16 +26,6 @@ describe "Directories" do
last_response.body.must_equal ""
end
it "has a Last-Modifier header set" do
last_response.status.must_equal 200
last_response.headers["Last-Modified"].wont_be_nil
now = Time.now
last_modified = DateTime.parse(last_response.headers["Last-Modified"])
last_modified.year.must_equal now.year
last_modified.day.must_equal now.day
end
it "has an ETag header set" do
last_response.status.must_equal 200
last_response.headers["ETag"].wont_be_nil
@@ -85,18 +75,6 @@ describe "Directories" do
content["items"]["foo"]["Content-Length"].must_equal 14
end
it "has a Last-Modifier header set" do
get "/jimmy/tasks/"
last_response.status.must_equal 200
last_response.headers["Last-Modified"].wont_be_nil
now = Time.now
last_modified = DateTime.parse(last_response.headers["Last-Modified"])
last_modified.year.must_equal now.year
last_modified.day.must_equal now.day
end
it "has an ETag header set" do
get "/jimmy/tasks/"

View File

@@ -26,8 +26,6 @@ describe "Permissions" do
last_response.status.must_equal 200
last_response.body.must_equal "some text data"
last_response.headers["Last-Modified"].wont_be_nil
end
it "returns the value from a sub-directory" do

View File

@@ -22,16 +22,6 @@ describe "App with Riak backend" do
last_response.body.must_equal ""
end
it "has a Last-Modified header set" do
last_response.status.must_equal 200
last_response.headers["Last-Modified"].wont_be_nil
now = Time.now
last_modified = DateTime.parse(last_response.headers["Last-Modified"])
last_modified.year.must_equal now.year
last_modified.day.must_equal now.day
end
it "has an ETag header set" do
last_response.status.must_equal 200
last_response.headers["ETag"].wont_be_nil
@@ -58,17 +48,6 @@ describe "App with Riak backend" do
last_response.body.must_equal "some text data"
end
# If this one fails, try restarting Riak
it "has a Last-Modified header set" do
last_response.status.must_equal 200
last_response.headers["Last-Modified"].wont_be_nil
now = Time.now
last_modified = DateTime.parse(last_response.headers["Last-Modified"])
last_modified.year.must_equal now.year
last_modified.day.must_equal now.day
end
it "has an ETag header set" do
last_response.status.must_equal 200
last_response.headers["ETag"].wont_be_nil