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

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

Issue 69723004: Get rid of DART_SDK in pub. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Revise. Created 7 years, 1 month 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
« no previous file with comments | « sdk/lib/_internal/pub/lib/src/sdk.dart ('k') | sdk/lib/_internal/pub/test/real_version_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/pub/test/pub_test.dart
diff --git a/sdk/lib/_internal/pub/test/pub_test.dart b/sdk/lib/_internal/pub/test/pub_test.dart
index cf0749ca87ed82eea6bc34810b019cfb657c6174..9651554a805e8d303c5d89947627ada8bc657a21 100644
--- a/sdk/lib/_internal/pub/test/pub_test.dart
+++ b/sdk/lib/_internal/pub/test/pub_test.dart
@@ -6,7 +6,6 @@ library pub_tests;
import 'package:scheduled_test/scheduled_test.dart';
-import 'descriptor.dart' as d;
import 'test_pub.dart';
final USAGE_STRING = """
@@ -169,23 +168,5 @@ main() {
integration('displays the current version', () {
schedulePub(args: ['version'], output: VERSION_STRING);
});
-
- integration('parses a release-style version', () {
- d.dir(sdkPath, [
- d.file('version', '0.1.2.0_r17645'),
- ]).create();
-
- schedulePub(args: ['version'], output: "Pub 0.1.2+0.r17645\n");
- });
-
- integration('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.
- d.dir(sdkPath, [
- d.file('version', '0.1.2.0_r16279_bobross'),
- ]).create();
-
- schedulePub(args: ['version'], output: "Pub 0.1.2+0.r16279.bobross\n");
- });
});
}
« no previous file with comments | « sdk/lib/_internal/pub/lib/src/sdk.dart ('k') | sdk/lib/_internal/pub/test/real_version_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698