モデルに関連付けられたネストされた属性をフェッチするよりクリーンな方法を探しているテストケースの1つを書き込もうとしています
例えば
class Category < ActiveRecord::Base
accepts_nested_attributes_for :devices, :books
#other association and code is not written here
end
私が期待する
$ Category.get_nested_attributes #this is a dummy method
$ ["devices","books"] #this is the return i expect
既存のヘルパーメソッドはありますか?はいの場合はお知らせください。:)
ありがとう