2016-08-12 19:52:55 -04:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
|
|
|
|
import {LOCALE_ID} from '@angular/core';
|
2017-03-02 15:12:46 -05:00
|
|
|
import {describe, expect, inject, it} from '../testing/src/testing_internal';
|
2016-08-12 19:52:55 -04:00
|
|
|
|
2017-12-15 19:28:41 -05:00
|
|
|
{
|
2016-08-12 19:52:55 -04:00
|
|
|
describe('Application module', () => {
|
2016-08-26 13:30:10 -04:00
|
|
|
it('should set the default locale to "en-US"',
|
|
|
|
inject([LOCALE_ID], (defaultLocale: string) => { expect(defaultLocale).toEqual('en-US'); }));
|
2016-08-12 19:52:55 -04:00
|
|
|
});
|
2017-01-05 12:24:37 -05:00
|
|
|
}
|