Skip to content

Commit 3de609d

Browse files
committed
adding a test case to ensure using fields_for on a serialized attribute works
1 parent 4bde76b commit 3de609d

File tree

6 files changed

+25
-3
lines changed

6 files changed

+25
-3
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ test/dummy/log/*.log
66
test/dummy/tmp/
77
*.gem
88
.rbenv-gemsets
9+
*.swp

Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
bootstrap_form (0.3.2)
4+
bootstrap_form (1.0.0)
55

66
GEM
77
remote: http://rubygems.org/

test/bootstrap_form_test.rb

+14-1
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ def setup
296296
assert_equal expected, output
297297
end
298298

299-
test "form_for helper works for associations" do
299+
test "bootstrap_form_for helper works for associations" do
300300
@user.address = Address.new(street: '123 Main Street')
301301

302302
output = bootstrap_form_for(@user) do |f|
@@ -309,6 +309,19 @@ def setup
309309
assert_equal expected, output
310310
end
311311

312+
test "bootstrap_form_for helper works for serialized hash attributes" do
313+
@user.preferences = { favorite_color: "cerulean" }
314+
315+
output = bootstrap_form_for(@user) do |f|
316+
f.fields_for :preferences do |builder|
317+
builder.text_field :favorite_color, value: @user.preferences[:favorite_color]
318+
end
319+
end
320+
321+
expected = %{<form accept-charset=\"UTF-8\" action=\"/users\" class=\" form-vertical\" id=\"new_user\" method=\"post\"><div style=\"margin:0;padding:0;display:inline\"><input name=\"utf8\" type=\"hidden\" value=\"&#x2713;\" /></div><div class=\"control-group\"><label class=\"control-label\" for=\"user_preferences_favorite_color\">Favorite color</label><div class=\"controls\"><input id=\"user_preferences_favorite_color\" name=\"user[preferences][favorite_color]\" type=\"text\" value=\"cerulean\" /></div></div></form>}
322+
assert_equal expected, output
323+
end
324+
312325
test "allows the form object to be nil" do
313326
builder = BootstrapForm::FormBuilder.new :other_model, nil, self, {}, nil
314327
expected = %{<div class=\"control-group\"><label class=\"control-label\" for=\"other_model_email\">Email</label><div class=\"controls\"><input id=\"other_model_email\" name=\"other_model[email]\" type=\"text\" /></div></div>}

test/dummy/app/models/user.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
class User < ActiveRecord::Base
2+
serialize :preferences, Hash.new(favorite_color: "circulian", favorite_animal: "platypus")
3+
24
validates :email, presence: true, :length => { minimum: 5 }
35

46
has_one :address
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
class AddPreferencesToUser < ActiveRecord::Migration
2+
def change
3+
add_column :users, :preferences, :text
4+
end
5+
end

test/dummy/db/schema.rb

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#
1212
# It's strongly recommended that you check this file into your version control system.
1313

14-
ActiveRecord::Schema.define(version: 20130703191937) do
14+
ActiveRecord::Schema.define(version: 20130912171202) do
1515

1616
create_table "addresses", force: true do |t|
1717
t.integer "user_id"
@@ -31,6 +31,7 @@
3131
t.string "misc"
3232
t.datetime "created_at"
3333
t.datetime "updated_at"
34+
t.text "preferences"
3435
end
3536

3637
end

0 commit comments

Comments
 (0)