1
0
Fork 0
liza/test/validate/formatter/NumberTest.js

51 lines
1.6 KiB
JavaScript
Raw Normal View History

/**
* Number formatter test
*
* Copyright (C) 2016 LoVullo Associates, Inc.
*
* This file is part of liza.
*
* liza is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
var liza = require( '../../../' ),
Sut = liza.validate.formatter.Number,
EchoFormatter = liza.validate.formatter.EchoFormatter,
common = require( './common' );
describe( 'validate.formatter.Number', function()
{
common.testValidate( EchoFormatter.use( Sut )(), {
"1": [ "1", "1" ],
"123": [ "123", "123" ],
"12345": [ "12345", "12,345" ],
"12,345": [ "12345", "12,345" ],
",12,345": [ "12345", "12,345" ],
"12,345,": [ "12345", "12,345" ],
" 12,345 ,": [ "12345", "12,345" ],
" 1, ,": [ "1", "1" ],
} );
common.testMixin(
EchoFormatter,
Sut,
'123',
'4567',
'1234567',
'1,234,567'
);
} );