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

Unified Diff: dart/sdk/lib/_internal/pub/test/sdk_test.dart

Issue 106993002: Revert "Change SDK/DartEditor versioning scheme to semantic versions." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years 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: dart/sdk/lib/_internal/pub/test/sdk_test.dart
diff --git a/dart/sdk/lib/_internal/pub/test/sdk_test.dart b/dart/sdk/lib/_internal/pub/test/sdk_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..6cec3e9f17c3cff28ed6cfe448e1461acc94570b
--- /dev/null
+++ b/dart/sdk/lib/_internal/pub/test/sdk_test.dart
@@ -0,0 +1,26 @@
+// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+library pub_tests;
+
+import 'package:unittest/unittest.dart';
+
+import '../lib/src/sdk.dart' as sdk;
+import '../lib/src/version.dart';
+
+main() {
+ group("parseVersion()", () {
+ test("parses a release-style version", () {
+ expect(sdk.parseVersion("0.1.2.0_r17645"),
+ equals(new Version.parse("0.1.2+0.r17645")));
+ });
+
+ test("parses a dev-only style version", () {
+ // The "version" file generated on developer builds is a little funky and
+ // we need to make sure we don't choke on it.
+ expect(sdk.parseVersion("0.1.2.0_r16279_bobross"),
+ equals(new Version.parse("0.1.2+0.r16279.bobross")));
+ });
+ });
+}

Powered by Google App Engine
This is Rietveld 408576698