blob: 28fd08c8099d355883cca8892b3a6ed5d3a50378 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
describe HelpController, "when using help" do
integrate_views
it "shows the about page" do
get :about
end
it "shows contact form" do
get :contact
end
it "sends a contact message" do
post :contact, { :contact => {
:name => "Vinny Vanilli",
:email => "vinny@localhost",
:subject => "Why do I have such an ace name?",
:message => "You really should know!!!\n\nVinny",
}, :submitted_contact_form => 1
}
response.should redirect_to(:controller => 'general', :action => 'frontpage')
deliveries = ActionMailer::Base.deliveries
deliveries.size.should == 1
deliveries[0].body.should include("really should know")
deliveries.clear
end
end
|