require 'spec_helper' describe "wikis/show" do before(:each) do @wiki = assign(:wiki, stub_model(Wiki, :title => "Title", :content => "MyText" )) end it "renders attributes in

" do render # Run the generator again with the --webrat flag if you want to use webrat matchers rendered.should match(/Title/) # Run the generator again with the --webrat flag if you want to use webrat matchers rendered.should match(/MyText/) end end