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

Unified Diff: tests/lib/i18n/intl_message_test.dart

Issue 10807096: Add date formatting and parsing code. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 5 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: tests/lib/i18n/intl_message_test.dart
===================================================================
--- tests/lib/i18n/intl_message_test.dart (revision 8510)
+++ tests/lib/i18n/intl_message_test.dart (working copy)
@@ -76,4 +76,9 @@
var ford = new Person('Ford', 'Prefect');
expect(hello(ford), equals('Hello, my name is Ford Prefect.'));
});
+
+ test('Set locale', (){
+ var de = new Intl('de_DE');
+ expect(de.locale,equals('de_DE'));
Emily Fortuna 2012/07/31 05:52:53 space after , why put this in intl_message_test?
Alan Knight 2012/08/03 23:02:15 Done. Moved to a separate intl_test.dart.
+ });
}

Powered by Google App Engine
This is Rietveld 408576698