diff options
author | Seb Bacon <seb.bacon@gmail.com> | 2010-12-30 17:26:33 +0000 |
---|---|---|
committer | Seb Bacon <seb.bacon@gmail.com> | 2010-12-30 17:26:33 +0000 |
commit | 2fbb355c1d811f1851f0cb5e255da7ef5b709125 (patch) | |
tree | e19f62aa54df82885267466071b36362a4df1418 /spec/controllers/user_controller_spec.rb | |
parent | 616bcd3c35bcf7cb1dd7609654aa5d0a1c2835db (diff) |
install fixture necessary for test to pass (not sure how this worked previously...)
Diffstat (limited to 'spec/controllers/user_controller_spec.rb')
-rw-r--r-- | spec/controllers/user_controller_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/controllers/user_controller_spec.rb b/spec/controllers/user_controller_spec.rb index 76893c560..94d064a49 100644 --- a/spec/controllers/user_controller_spec.rb +++ b/spec/controllers/user_controller_spec.rb @@ -7,8 +7,8 @@ require 'json' describe UserController, "when showing a user" do integrate_views - fixtures :users, :outgoing_messages, :incoming_messages, :raw_emails, :info_requests, :info_request_events, :comments - + fixtures :users, :outgoing_messages, :incoming_messages, :raw_emails, :info_requests, :info_request_events, :comments, :public_bodies + it "should be successful" do get :show, :url_name => "bob_smith" response.should be_success |