From 0e62622f5a2e2a4e1488707683747630fb6b16fc Mon Sep 17 00:00:00 2001 From: bmac Date: Mon, 7 Dec 2015 17:52:08 -0500 Subject: [PATCH] Remove duplicate createRecord test Closes https://github.com/emberjs/data/issues/3969 This test has been obsolete since #3033 --- tests/unit/store/create-record-test.js | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/tests/unit/store/create-record-test.js b/tests/unit/store/create-record-test.js index dea148fd8af..71c6d6b63c1 100644 --- a/tests/unit/store/create-record-test.js +++ b/tests/unit/store/create-record-test.js @@ -73,18 +73,6 @@ module("unit/store/createRecord - Store with models by dash", { } }); -test("creating a record by camel-case string finds the model", function(assert) { - var attributes = { foo: 'bar' }; - var record; - - run(function() { - record = store.createRecord('some-thing', attributes); - }); - - assert.equal(record.get('foo'), attributes.foo, "The record is created"); - assert.equal(store.modelFor('someThing').modelName, 'some-thing'); -}); - test("creating a record by dasherize string finds the model", function(assert) { var attributes = { foo: 'bar' }; var record;