From 4fe7e6f3f5daec7717b88e4f484bdb872ef7aacd Mon Sep 17 00:00:00 2001 From: Neil Smith Date: Tue, 7 Jan 2014 23:52:49 +0000 Subject: [PATCH] Made format_spec more exacting --- spec/requests/format_spec.rb | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/spec/requests/format_spec.rb b/spec/requests/format_spec.rb index 216cc39..93330d6 100644 --- a/spec/requests/format_spec.rb +++ b/spec/requests/format_spec.rb @@ -5,51 +5,61 @@ describe "format" do it "serves index as html by default" do get_via_redirect '/index' expect(response.header['Content-Type']).to include('text/html') + expect(response.header['Content-Type']).not_to include('application/rss+xml') end it "serves index.html as html" do get_via_redirect '/index.html' expect(response.header['Content-Type']).to include('text/html') + expect(response.header['Content-Type']).not_to include('application/rss+xml') end it "serves index.rss as rss" do get_via_redirect '/index.rss' expect(response.header['Content-Type']).to include('application/rss+xml') + expect(response.header['Content-Type']).not_to include('text/html') end it "serves index as html with the accept header" do get_via_redirect '/index', {}, {'Accept' => 'text/html'} expect(response.header['Content-Type']).to include('text/html') + expect(response.header['Content-Type']).not_to include('application/rss+xml') end it "serves index as rss with the accept header" do get_via_redirect '/index', {}, {'Accept' => 'application/rss+xml'} expect(response.header['Content-Type']).to include('application/rss+xml') + expect(response.header['Content-Type']).not_to include('text/html') end it "serves feed as html by default" do get_via_redirect '/other_test_feed' expect(response.header['Content-Type']).to include('text/html') + expect(response.header['Content-Type']).not_to include('application/rss+xml') end it "serves feed.html as html" do get_via_redirect '/other_test_feed.html' expect(response.header['Content-Type']).to include('text/html') + expect(response.header['Content-Type']).not_to include('application/rss+xml') end it "serves feed.rss as rss" do get_via_redirect '/other_test_feed.rss' expect(response.header['Content-Type']).to include('application/rss+xml') + expect(response.header['Content-Type']).not_to include('text/html') end it "serves feed as html with the accept header" do get_via_redirect '/other_test_feed', {}, {'Accept' => 'text/html'} expect(response.header['Content-Type']).to include('text/html') + expect(response.header['Content-Type']).not_to include('application/rss+xml') end it "serves feed as rss with the accept header" do get_via_redirect '/other_test_feed', {}, {'Accept' => 'application/rss+xml'} expect(response.header['Content-Type']).to include('application/rss+xml') + expect(response.header['Content-Type']).not_to include('text/html') end end -- 2.34.1