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

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

Issue 103233006: Reapply "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
deleted file mode 100644
index 6cec3e9f17c3cff28ed6cfe448e1461acc94570b..0000000000000000000000000000000000000000
--- a/dart/sdk/lib/_internal/pub/test/sdk_test.dart
+++ /dev/null
@@ -1,26 +0,0 @@
-// 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