
attach_file with nested attributes
Reported by Bryan Helmkamp | January 17th, 2010 @ 06:51 PM
Moved from GitHub issue # 27
Created 3 months ago by Rakoth
I add this spec, and it does not pass.
it "should support nested attributes" do
with_html <<-HTML
<html>
<form method="post" action="/albums">
<label for="photo_file1">Photo</label>
<input type="file" id="photo_file1" name="album[photos_attributes][][image]" />
<input type="submit" />
</form>
</html>
HTML
webrat_session.should_receive(:post).with("/albums", { "album" => { "photos_attributes" => [{"image" => @uploaded_file}] } })
attach_file "Photo", @filename
click_button
end
Comments and changes to this ticket
-
Álvaro Gil April 5th, 2010 @ 10:35 AM
Hi,
I can make the test pass in this branch:
http://github.com/zevarito/webrat/commits/nested_params_support
is the last commit but it is based on the previous 2 commits.
-
-
Damian Janowski April 12th, 2010 @ 08:56 PM
- State changed from new to resolved
Please Sign in or create a free account to add a new ticket.
With your very own profile, you can contribute to projects, track your activity, watch tickets, receive and update tickets through your email and much more.
Create your profile
Help contribute to this project by taking a few moments to create your personal profile. Create your profile »
Ruby Acceptance Testing for Web applications.