Files
fetsite/spec/views/galleries/show.html.erb_spec.rb
Andreas Stephanides 34b602e126 a lot of new models ...
Fotogallary, gremien, fetprofil,
2013-08-19 15:39:56 +02:00

18 lines
399 B
Ruby

require 'spec_helper'
describe "galleries/show" do
before(:each) do
@gallery = assign(:gallery, stub_model(Gallery,
:name => "Name",
:desc => "MyText"
))
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(/MyText/)
end
end