diff options
author | Seb Bacon <seb.bacon@gmail.com> | 2012-06-19 09:13:16 +0100 |
---|---|---|
committer | Seb Bacon <seb.bacon@gmail.com> | 2012-06-19 09:13:16 +0100 |
commit | 363e3aaeea5d185e47e22825bad865c31e3e6ed8 (patch) | |
tree | 98bd4b86534b2e566237bc9bc013156eb7ebc638 /spec/controllers/request_controller_spec.rb | |
parent | 4bb3e9d5ff49ec5fb108a5a618993248abcb3692 (diff) |
Correctly name the person who has requested something for admin attention
Diffstat (limited to 'spec/controllers/request_controller_spec.rb')
-rw-r--r-- | spec/controllers/request_controller_spec.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/spec/controllers/request_controller_spec.rb b/spec/controllers/request_controller_spec.rb index 28f56dcf6..13887749d 100644 --- a/spec/controllers/request_controller_spec.rb +++ b/spec/controllers/request_controller_spec.rb @@ -1889,6 +1889,7 @@ describe RequestController, "when reporting a request" do mail = deliveries[0] mail.subject.should =~ /attention_requested/ mail.from.should include(@user.email) + mail.body.should include(@user.name) end end |