diff options
author | Louise Crow <louise.crow@gmail.com> | 2012-10-25 18:25:45 +0100 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2012-10-25 18:29:42 +0100 |
commit | 96e980b6836f8c696429838258d2cc0778d8dcec (patch) | |
tree | e69c18defe26040c8bcb3b1f608a8ca8ced50074 /spec/models/user_spec.rb | |
parent | bec84a144eda607404c2db676b61a486610e51f7 (diff) |
Restore removed testing config param, remove spec for unset param - I think not really worth it.
Diffstat (limited to 'spec/models/user_spec.rb')
-rw-r--r-- | spec/models/user_spec.rb | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/spec/models/user_spec.rb b/spec/models/user_spec.rb index 779b74d0c..e31c3f1b5 100644 --- a/spec/models/user_spec.rb +++ b/spec/models/user_spec.rb @@ -302,12 +302,3 @@ describe User, "when emails have bounced" do user.email_bounce_message.should == "The reason we think the email bounced (e.g. a bounce message)" end end - -describe User, 'when asked if the user has exceeded their request limit' do - - it 'should return false if there is no max requests value set in the site configuration' do - user = User.new - lambda{ user.exceeded_limit? }.should_not raise_error - end - -end |