Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(771)

Side by Side Diff: third_party/pkg/angular/test/formatter/currency_spec.dart

Issue 257423008: Update all Angular libs (run update_all.sh). (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 library curerncy_spec;
2
3 import '../_specs.dart';
4 import 'package:intl/intl.dart';
5
6 void main() {
7 describe('number', () {
8 var currency;
9
10 beforeEach((FormatterMap map, Injector injector) {
11 currency = injector.get(map[new Formatter(name: 'currency')]);
12 });
13
14
15 it('should do basic currency filtering', () {
16 expect(currency(0)).toEqual(r'$0.00');
17 expect(currency(-999)).toEqual(r'($999.00)');
18 expect(currency(1234.5678, r"USD$")).toEqual(r'USD$1,234.57');
19 });
20
21
22 it('should return empty string for non-numbers', () {
23 expect(currency(null)).toEqual(null);
24 });
25
26 it('should handle zero and nearly-zero values properly', () {
27 // This expression is known to yield 4.440892098500626e-16 instead of 0.0.
28 expect(currency(1.07 + 1 - 2.07)).toEqual(r'$0.00');
29 expect(currency(0.008)).toEqual(r'$0.01');
30 expect(currency(0.003)).toEqual(r'$0.00');
31 });
32
33 it('should accept various locales', () {
34 expect(Intl.withLocale('de', () => currency(0.008, '€', false))).toEqual(r '0,01€');
35 });
36 });
37 }
OLDNEW
« no previous file with comments | « third_party/pkg/angular/test/formatter/arrayify_spec.dart ('k') | third_party/pkg/angular/test/formatter/date_spec.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698