diff options
author | Louise Crow <louise.crow@gmail.com> | 2013-07-23 16:44:41 +0100 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2013-07-23 16:44:41 +0100 |
commit | bcf2d0108b8328b7d12921a6cc9854353167ac62 (patch) | |
tree | ff3f716351a69003c6ce08abfb081a6f80e3c6ae | |
parent | bc0a6d54c4e5f3673a761ca434c49cbfebb89b09 (diff) |
Use AlaveteliConfiguration wrapper in test so we can be more specific about the method to be stubbed and avoid side effects.
-rw-r--r-- | spec/models/public_body_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/models/public_body_spec.rb b/spec/models/public_body_spec.rb index bc693b4da..34a91a2c9 100644 --- a/spec/models/public_body_spec.rb +++ b/spec/models/public_body_spec.rb @@ -464,7 +464,7 @@ end describe PublicBody, " when override all public body request emails set" do it "should return the overridden request email" do - MySociety::Config.should_receive(:get).with("OVERRIDE_ALL_PUBLIC_BODY_REQUEST_EMAILS", "").twice.and_return("catch_all_test_email@foo.com") + AlaveteliConfiguration.should_receive(:override_all_public_body_request_emails).twice.and_return("catch_all_test_email@foo.com") @geraldine = public_bodies(:geraldine_public_body) @geraldine.request_email.should == "catch_all_test_email@foo.com" end |