如何在单元测试中访问速记助手以对其进行测试?
例子:
/helpers/full-address.js
import Ember from 'ember';
export default Ember.Helper.helper(function(params, hash) {
var fullAddress = hash.line1 === "" ? "" : hash.line1 + ", ";
fullAddress += hash.town === "" ? "" : hash.town + ", " ;
fullAddress += hash.postCode === "" ? "" : hash.postCode + ", ";
if (fullAddress.length > 2) {
fullAddress = fullAddress.replace(/,(\s+)?$/, "");
}
return fullAddress;
});
在addresses.hbs中使用速记助手
<h4>Addresses</h4>
{{#each model.addresses key="id" as |address|}}
<p>
{{full-address line1=address.line1 town=address.town postCode=address.postCode}}
</p>
{{/each}}
全地址测试
import { fullAddress } from '../../../helpers/full-address';
import { module, test } from 'qunit';
module('Unit | Helper | full address');
// Replace this with your real tests.
test('it works', function(assert) {
var line1 = "123 Test Street";
var town = "My Town";
var postCode = "TE5 5ST";
var expected = line1 + ", " + town + ", " + postCode;
var result = ??? // Call helper here
assert.equal(result, expected);
});
我如何用这 3 个散列变量调用速记助手?