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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: third_party/pkg/angular/test/formatter/currency_spec.dart
diff --git a/third_party/pkg/angular/test/formatter/currency_spec.dart b/third_party/pkg/angular/test/formatter/currency_spec.dart
new file mode 100644
index 0000000000000000000000000000000000000000..a488c107f8124f192fd203bbca38b575387c0218
--- /dev/null
+++ b/third_party/pkg/angular/test/formatter/currency_spec.dart
@@ -0,0 +1,37 @@
+library curerncy_spec;
+
+import '../_specs.dart';
+import 'package:intl/intl.dart';
+
+void main() {
+ describe('number', () {
+ var currency;
+
+ beforeEach((FormatterMap map, Injector injector) {
+ currency = injector.get(map[new Formatter(name: 'currency')]);
+ });
+
+
+ it('should do basic currency filtering', () {
+ expect(currency(0)).toEqual(r'$0.00');
+ expect(currency(-999)).toEqual(r'($999.00)');
+ expect(currency(1234.5678, r"USD$")).toEqual(r'USD$1,234.57');
+ });
+
+
+ it('should return empty string for non-numbers', () {
+ expect(currency(null)).toEqual(null);
+ });
+
+ it('should handle zero and nearly-zero values properly', () {
+ // This expression is known to yield 4.440892098500626e-16 instead of 0.0.
+ expect(currency(1.07 + 1 - 2.07)).toEqual(r'$0.00');
+ expect(currency(0.008)).toEqual(r'$0.01');
+ expect(currency(0.003)).toEqual(r'$0.00');
+ });
+
+ it('should accept various locales', () {
+ expect(Intl.withLocale('de', () => currency(0.008, '€', false))).toEqual(r'0,01€');
+ });
+ });
+}
« 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