关联的标签引用

时间:2011-07-18 20:04:28

标签: ruby-on-rails-3 testing namespaces integration-testing fixtures

Rails为像这样的灯具中的关联提供标签参考:

### in pirates.yml

  reginald:
    name: Reginald the Pirate
    monkey: george

### in monkeys.yml

  george:
    name: George the Monkey
    pirate: reginald

这适用于非名称空间模型,但我使用名称空间,因此Rails感到困惑,并希望插入标签而不是标签引用。

是否有任何变通方法或修复方法?

1 个答案:

答案 0 :(得分:4)

Fixtures.identify似乎是唯一的解决方案,不是很漂亮,但比ids更好。

### in pirates.yml

  reginald:
    name: Reginald the Pirate
    monkey_id: <%= Fixtures.identify(:george) %>


### in monkeys.yml

  george:
    name: George the Monkey
    pirate_id: <%= Fixtures.identify(:reginald) %>