Rough cut: compare.

This commit is contained in:
Matthew Dillon 2015-06-17 14:40:28 -08:00
parent adda1291c6
commit 30f8e89c40
10 changed files with 140 additions and 9 deletions

View file

@ -0,0 +1,10 @@
import { getProperty } from '../../../helpers/get-property';
import { module, test } from 'qunit';
module('Unit | Helper | get property');
// Replace this with your real tests.
test('it works', function(assert) {
var result = getProperty(42);
assert.ok(result);
});