工厂女孩to_json问题

时间:2010-11-08 15:38:39

标签: ruby-on-rails-3 rspec factory-bot

当我在Factory Girl对象上调用to_json时,我得到一个nil。[]错误。

我在Rails 3上使用DataMapper,当我在一个真正的DataMapper对象上调用to_json时,它运行得很好。知道为什么Factory Girl对象失败了吗?

Factory.define :something do |b|
  b.date_foo { 3.days.ago - 4.hours }
  b.date_bar { 3.days.ago - 4.hours }
  b.somestring '11'
  b.anotherstring 'ASTRINGYAY'
  b.thirdstring 'STRINGG'
  b.fourthstring 'STRING'
  b.otherstring 'thestring'
  b.longerstring 'The string that is longer'
  b.somenumber 3
  b.someothernumber 2
  b.an_id 5593
  b.a_version '1.2.2.2'
  b.a_string '1.2.2.2'
  b.something '1.2.2.2'
  b.code 'SOME CODE'
  b.other_code 'API'
  b.something_id 49
  b.something_version 'OMG'
  b.otherthing 'N/A'
  b.lastthing 'A'
end

另外,我发现了以下内容:

factory_girl_object.to_json效果很好。

[factory_girl_object].to_json失败。

DataMapper显然使用了DataMapper :: Collection对象而不是数组,它们处理的to_json的内容与数组相比有点不同。我似乎无法弄清楚如何创建一个DataMapper :: Collection对象来保存我的Factory_Girl对象。

思想?

1 个答案:

答案 0 :(得分:0)

哈,不妨回过头来回答这个问题。

DataMapper为专门的类数据结构中的对象提供服务,为您处理JSON序列化。如果你试图将DM对象放在一个常规数组中,它就会失败,产生我上面提到的错误。