您好我正在尝试在Ember CLI中编写第一个测试。这就是我的测试看起来像
> ...
>
> moduleForModel('recipe/recipe', 'Recipe Model works', {
> needs: ['model:recipe/recipe'] });
> test('Recipe is a valid ember-data Model', function (assert) {
> var store = this.store();
> var recipe = this.subject({name: 'A title for a recipe'});
>
> assert.ok(recipe instanceof DS.Model); });
模型配方/配方模型
...
var Recipe = DS.Model.extend({
name: DS.attr('string'),
category: DS.belongsTo('recipe/category', {async: true}),
file: DS.belongsTo('filerepository/file', {async: true})
});
Recipe.reopenClass({
FIXTURES: [
{ id: 1, name: 'New Recipe'},
]
});
如果我运行给定测试,则输出:错误:未找到“食谱/类别”的模型
如果我在模型上注释// category和// file。测试通过。目前使用夹具适配器。当我在应用程序的工作流程中创建记录或加载它们时,所有关系都可以正常工作。 (如store.find('recipe / category')等。)
答案 0 :(得分:1)
您需要在moduleForModel
中声明更多您依赖的模型:
needs: ['model:recipe/recipe', 'model:recipe/category', 'model:filerepository/file']