18 lines
400 B
Ruby
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
|