diff options
author | James McKinney <james@slashpoundbang.com> | 2011-10-16 20:12:26 -0400 |
---|---|---|
committer | James McKinney <james@slashpoundbang.com> | 2011-10-16 20:12:26 -0400 |
commit | 0bf2e8d5cb7a34f3bc932d88f0ec4293320aca4d (patch) | |
tree | 7636a1dfc0e1bd67bdaf2c56a7a9ed1e925ec8af /spec/models/user_spec.rb | |
parent | 6bc07fec63a929d5413b33f7bc34e3505e17a090 (diff) |
allow specs to run independently
Diffstat (limited to 'spec/models/user_spec.rb')
-rw-r--r-- | spec/models/user_spec.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/models/user_spec.rb b/spec/models/user_spec.rb index 751a61060..f77e39ab4 100644 --- a/spec/models/user_spec.rb +++ b/spec/models/user_spec.rb @@ -193,7 +193,7 @@ describe User, "when reindexing referencing models" do end describe User, "when checking abilities" do - fixtures :users + fixtures :users, :info_requests, :raw_emails, :incoming_messages, :outgoing_messages, :comments, :info_request_events, :track_things before do @user = users(:bob_smith_user) @@ -283,7 +283,7 @@ describe User, "when setting a profile photo" do end describe User, "when unconfirmed" do - fixtures :users + fixtures :users, :info_requests, :raw_emails, :incoming_messages, :outgoing_messages, :comments, :info_request_events, :track_things before do @user = users(:unconfirmed_user) @@ -295,7 +295,7 @@ describe User, "when unconfirmed" do end describe User, "when emails have bounced" do - fixtures :users + fixtures :users, :info_requests, :raw_emails, :incoming_messages, :outgoing_messages, :comments, :info_request_events, :track_things it "should record bounces" do User.record_bounce_for_email("bob@localhost", "The reason we think the email bounced (e.g. a bounce message)") |