diff options
author | virusman <virusman@virusman.ru> | 2013-01-21 16:52:10 +0400 |
---|---|---|
committer | virusman <virusman@virusman.ru> | 2013-01-21 17:09:12 +0400 |
commit | 9047ca019afaba5da228c7e0dc1a11cbb5e2e93b (patch) | |
tree | 39520ca823c69de101d3c6476f684c1c8ef86127 /actionpack/test/fixtures | |
parent | e4dbfce1c3db0a24093e2314ecaa724b3dd19760 (diff) | |
download | rails-9047ca019afaba5da228c7e0dc1a11cbb5e2e93b.tar.gz rails-9047ca019afaba5da228c7e0dc1a11cbb5e2e93b.tar.bz2 rails-9047ca019afaba5da228c7e0dc1a11cbb5e2e93b.zip |
Added AR integration tests for form helpers
Diffstat (limited to 'actionpack/test/fixtures')
-rw-r--r-- | actionpack/test/fixtures/developer.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/actionpack/test/fixtures/developer.rb b/actionpack/test/fixtures/developer.rb index dd14548fac..4941463015 100644 --- a/actionpack/test/fixtures/developer.rb +++ b/actionpack/test/fixtures/developer.rb @@ -2,6 +2,7 @@ class Developer < ActiveRecord::Base has_and_belongs_to_many :projects has_many :replies has_many :topics, :through => :replies + accepts_nested_attributes_for :projects end class DeVeLoPeR < ActiveRecord::Base |