summaryrefslogtreecommitdiff
path: root/spec/views/pms/edit.html.erb_spec.rb
blob: 5ec0de5b48afd3ab3194fd62a94298495d9a93a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require 'spec_helper'

describe "pms/edit" do
  before(:each) do
    @pm = assign(:pm, stub_model(Pm,
      :author => nil,
      :recipient => nil,
      :message => "MyText"
    ))
  end

  it "renders the edit pm form" do
    render

    # Run the generator again with the --webrat flag if you want to use webrat matchers
    assert_select "form[action=?][method=?]", pm_path(@pm), "post" do
      assert_select "input#pm_author[name=?]", "pm[author]"
      assert_select "input#pm_recipient[name=?]", "pm[recipient]"
      assert_select "textarea#pm_message[name=?]", "pm[message]"
    end
  end
end