コード例 #1
0
ファイル: utils.js プロジェクト: princetoad/wp-calypso
		test( 'should return false for elements in the exception list', () => {
			expect( canBeTranslated( 'en' ) ).to.be.false;
			expect( canBeTranslated( 'sr_latin' ) ).to.be.false;
		} );
コード例 #2
0
ファイル: utils.js プロジェクト: princetoad/wp-calypso
		test( 'should return true for languages not in the exception list', () => {
			expect( canBeTranslated( 'de' ) ).to.be.true;
		} );
コード例 #3
0
ファイル: utils.js プロジェクト: princetoad/wp-calypso
		test( 'should return true by default', () => {
			expect( canBeTranslated() ).to.be.true;
		} );