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

25 lines
710 B
Ruby

require 'spec_helper'
describe "fotos/new" do
before(:each) do
assign(:foto, stub_model(Foto,
:title => "MyString",
:desc => "MyText",
:gallery_id => 1,
:datei => "MyString"
).as_new_record)
end
it "renders new foto form" do
render
# Run the generator again with the --webrat flag if you want to use webrat matchers
assert_select "form[action=?][method=?]", fotos_path, "post" do
assert_select "input#foto_title[name=?]", "foto[title]"
assert_select "textarea#foto_desc[name=?]", "foto[desc]"
assert_select "input#foto_gallery_id[name=?]", "foto[gallery_id]"
assert_select "input#foto_datei[name=?]", "foto[datei]"
end
end
end