( function( QUnit, wordCounter ) { QUnit.module( 'word-count' ); QUnit.test( 'All.', function( assert ) { _.each( [ { message: 'Basic test.', string: 'one two three', words: 3, characters: 11, all: 13 }, { message: 'HTML tags.', string: 'one two
three', words: 3, characters: 11, all: 12 }, { message: 'Line breaks.', string: 'one\ntwo\nthree', words: 3, characters: 11, all: 11 }, { message: 'Encoded spaces.', string: 'one two three', words: 3, characters: 11, all: 13 }, { message: 'Punctuation.', string: 'It\'s two three \u2026 4?', words: 3, characters: 15, all: 19 }, { message: 'Em dash.', string: 'one\u2014two--three', words: 3, characters: 14, all: 14 } ], function( test ) { _.each( [ 'words', 'characters', 'all' ], function( type ) { assert.equal( wordCounter.count( test.string, type ), test[ type ], test.message + ' (' + type + ')' ); } ); } ); } ); } )( window.QUnit, new window.wp.utils.WordCounter() );