本文整理匯總了TypeScript中type-r.Record類的典型用法代碼示例。如果您正苦於以下問題:TypeScript Record類的具體用法?TypeScript Record怎麽用?TypeScript Record使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了Record類的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: describe
describe( "Integer", function () {
var user, User = Record.extend( {
attributes: {
int: Integer
}
} )
beforeEach( function () {
user = new User();
} );
it( 'create new int string on construction', function () {
expect( user.int ).toBe( 0 );
} );
it( 'rounding and conversion', function () {
user.int = 3.2
expect( typeof user.int ).toBe( 'number' );
expect( user.int ).toBe( 3 );
user.int = "25.7";
expect( typeof user.int ).toBe( 'number' );
expect( user.int ).toBe( 26 );
} )
it( 'can be set with null', function(){
user.int = null;
expect( user.int ).toBe( null );
expect( user.isValid() ).toBe( true );
});
} )