From 7573586c3be6318e19ae02ff008dfb2a576b5980 Mon Sep 17 00:00:00 2001 From: Seb Bacon Date: Fri, 29 Jul 2011 10:02:57 +0100 Subject: To make tests pass with RawEmails on the filesystem, instead of hacky dependency on existence of text_binary field in raw_emails model, rewrite tests (and their fixtures) to explicitly load data from FS when raw_emails are used. --- spec/controllers/track_controller_spec.rb | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'spec/controllers/track_controller_spec.rb') diff --git a/spec/controllers/track_controller_spec.rb b/spec/controllers/track_controller_spec.rb index 0a8919268..f7002a9d4 100644 --- a/spec/controllers/track_controller_spec.rb +++ b/spec/controllers/track_controller_spec.rb @@ -37,6 +37,9 @@ describe TrackController, "when sending alerts for a track" do integrate_views fixtures :info_requests, :outgoing_messages, :incoming_messages, :raw_emails, :info_request_events, :users, :track_things, :track_things_sent_emails, :public_bodies, :public_body_translations include LinkToHelper # for main_url + before(:each) do + load_raw_emails_data(raw_emails) + end before do rebuild_xapian_index @@ -100,6 +103,7 @@ describe TrackController, "when viewing RSS feed for a track" do before do rebuild_xapian_index + load_raw_emails_data(raw_emails) end it "should get the RSS feed" do @@ -125,6 +129,7 @@ describe TrackController, "when viewing JSON version of a track feed" do before do rebuild_xapian_index + load_raw_emails_data(raw_emails) end it "should get the feed" do -- cgit v1.2.3