25 lines
716 B
Ruby
25 lines
716 B
Ruby
require 'spec_helper'
|
|
|
|
describe "fotos/edit" do
|
|
before(:each) do
|
|
@foto = assign(:foto, stub_model(Foto,
|
|
:title => "MyString",
|
|
:desc => "MyText",
|
|
:gallery_id => 1,
|
|
:datei => "MyString"
|
|
))
|
|
end
|
|
|
|
it "renders the edit foto form" do
|
|
render
|
|
|
|
# Run the generator again with the --webrat flag if you want to use webrat matchers
|
|
assert_select "form[action=?][method=?]", foto_path(@foto), "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
|