| 
									
										
										
										
											2016-08-12 16:52:55 -07: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 12:12:46 -08:00
										 |  |  | import {describe, expect, inject, it} from '../testing/src/testing_internal'; | 
					
						
							| 
									
										
										
										
											2016-08-12 16:52:55 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-15 16:28:41 -08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-08-12 16:52:55 -07:00
										 |  |  |   describe('Application module', () => { | 
					
						
							| 
									
										
										
										
											2016-08-26 10:30:10 -07:00
										 |  |  |     it('should set the default locale to "en-US"', | 
					
						
							|  |  |  |        inject([LOCALE_ID], (defaultLocale: string) => { expect(defaultLocale).toEqual('en-US'); })); | 
					
						
							| 
									
										
										
										
											2016-08-12 16:52:55 -07:00
										 |  |  |   }); | 
					
						
							| 
									
										
										
										
											2017-01-05 20:24:37 +03:00
										 |  |  | } |