summaryrefslogtreecommitdiff
path: root/spec/views/alerts/edit.html.erb_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/views/alerts/edit.html.erb_spec.rb')
-rw-r--r--spec/views/alerts/edit.html.erb_spec.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/spec/views/alerts/edit.html.erb_spec.rb b/spec/views/alerts/edit.html.erb_spec.rb
new file mode 100644
index 0000000..d837f26
--- /dev/null
+++ b/spec/views/alerts/edit.html.erb_spec.rb
@@ -0,0 +1,20 @@
+require 'spec_helper'
+
+describe "alerts/edit" do
+ before(:each) do
+ @alert = assign(:alert, stub_model(Alert,
+ :author => nil,
+ :message => "MyText"
+ ))
+ end
+
+ it "renders the edit alert form" do
+ render
+
+ # Run the generator again with the --webrat flag if you want to use webrat matchers
+ assert_select "form[action=?][method=?]", alert_path(@alert), "post" do
+ assert_select "input#alert_author[name=?]", "alert[author]"
+ assert_select "textarea#alert_message[name=?]", "alert[message]"
+ end
+ end
+end