Files
fetsite/spec/views/calendars/show.html.erb_spec.rb
2013-08-06 00:48:45 +02:00

18 lines
400 B
Ruby

require 'spec_helper'
describe "calendars/show" do
before(:each) do
@calendar = assign(:calendar, stub_model(Calendar,
:name => "Name",
:public => false
))
end
it "renders attributes in <p>" do
render
# Run the generator again with the --webrat flag if you want to use webrat matchers
rendered.should match(/Name/)
rendered.should match(/false/)
end
end