require 'spec_helper' describe "teams/edit" do before(:each) do @team = assign(:team, stub_model(Team)) end it "renders the edit team form" do render # Run the generator again with the --webrat flag if you want to use webrat matchers assert_select "form[action=?][method=?]", team_path(@team), "post" do end end end