Sha256: 64588147c6d9a9fab93ffa1b3f528de0030f3800ca3de37d63d7eabb14fa7ad3
Contents?: true
Size: 1.51 KB
Versions: 1
Compression:
Stored size: 1.51 KB
Contents
// ========================================================================== // Project: SproutCore - JavaScript Application Framework // Copyright: ©2006-2009 Apple Inc. and contributors. // License: Licened under MIT license (see license.js) // ========================================================================== /*globals module ok equals same test MyApp */ var MyFoo = null ; module("SC.Record#unknownProperty", { setup: function() { MyApp = SC.Object.create({ store: SC.Store.create() }) ; MyApp.Foo = SC.Record.extend(); MyApp.json = { foo: "bar", number: 123, bool: YES, array: [1,2,3] }; MyApp.foo = MyApp.store.createRecord(MyApp.Foo, MyApp.json); } }); test("get() returns attributes with no type changes if they exist", function() { 'foo number bool array'.w().forEach(function(key) { equals(MyApp.foo.get(key), MyApp.json[key], "MyApp.foo.get(%@) should === attribute".fmt(key)); }); }); test("get() unknown attribute returns undefined", function() { equals(MyApp.foo.get('imaginary'), undefined, 'imaginary property should be undefined'); }); test("set() unknown property should add to dataHash", function() { MyApp.foo.set('blue', '0x00f'); equals(MyApp.store.dataHashes[MyApp.foo.storeKey].blue, '0x00f', 'should add blue attribute'); }); test("set() should replace existing property", function() { MyApp.foo.set('foo', 'baz'); equals(MyApp.store.dataHashes[MyApp.foo.storeKey].foo, 'baz', 'should update foo attribute'); });
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
sproutit-sproutcore-1.0.20090721145285 | frameworks/sproutcore/frameworks/datastore/tests/models/record/unknownProperty.js |