mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 02:30:57 +08:00
41 lines
987 B
JavaScript
41 lines
987 B
JavaScript
module('store:main');
|
|
|
|
import createStore from 'helpers/create-store';
|
|
|
|
test('createRecord', function() {
|
|
const store = createStore();
|
|
const widget = store.createRecord('widget', {id: 111, name: 'hello'});
|
|
equal(widget.get('name'), 'hello');
|
|
equal(widget.get('id'), 111);
|
|
});
|
|
|
|
test('find', function() {
|
|
const store = createStore();
|
|
store.find('widget', 123).then(function(w) {
|
|
equal(w.get('name'), 'Trout Lure');
|
|
equal(w.get('id'), 123);
|
|
|
|
// A second find by id returns the same object
|
|
store.find('widget', 123).then(function(w2) {
|
|
equal(w, w2);
|
|
});
|
|
|
|
});
|
|
});
|
|
|
|
test('findAll', function() {
|
|
const store = createStore();
|
|
store.findAll('widget').then(function(result) {
|
|
equal(result.length, 2);
|
|
const w = result.findBy('id', 124);
|
|
equal(w.get('name'), 'Evil Repellant');
|
|
});
|
|
});
|
|
|
|
test('destroyRecord', function() {
|
|
const store = createStore();
|
|
store.destroyRecord('widget', 124).then(function(result) {
|
|
ok(result);
|
|
});
|
|
});
|