Sha256: 8ab6410d6356ccabfee6fdf3d8a2a0714a5f68dbc1a5fe7cc33ddc680bd4213f
Contents?: true
Size: 1.36 KB
Versions: 2
Compression:
Stored size: 1.36 KB
Contents
// ========================================================================== // Project: SproutCore - JavaScript Application Framework // Copyright: ©2006-2010 Apple Inc. and contributors. // License: Licensed under MIT license (see license.js) // ========================================================================== /*globals module ok equals same test MyApp */ // test parsing of query string var rec, q; module("SC.Query comparison of record types", { setup: function() { SC.RunLoop.begin(); // setup dummy app and store window.MyApp = SC.Object.create({ store: SC.Store.create() }); // setup a dummy model window.MyApp.Foo = SC.Record.extend({}); // load some data window.MyApp.store.loadRecords(window.MyApp.Foo, [ { guid: 1, firstName: "John", lastName: "Doe" } ]); rec = window.MyApp.store.find(window.MyApp.Foo,1); q = SC.Query.create(); SC.RunLoop.end(); } }); test("should handle record types", function() { q.conditions = "TYPE_IS 'MyApp.Foo'"; q.parse(); equals(SC.Store.recordTypeFor(rec.storeKey), SC.objectForPropertyPath('MyApp.Foo'), 'record type should be MyApp.Foo'); ok(q.contains(rec), 'record with proper type should match'); q.conditions = "TYPE_IS 'MyApp.Baz'"; q.parse(); ok(!q.contains(rec), 'record with wrong type should not match'); });
Version data entries
2 entries across 2 versions & 2 rubygems