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

Unified Diff: utils/tests/pub/pub_cache_test.dart

Issue 12782005: Revert "Use scheduled_test for Pub tests." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 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
« no previous file with comments | « utils/tests/pub/oauth2_test.dart ('k') | utils/tests/pub/pub_lish_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/tests/pub/pub_cache_test.dart
diff --git a/utils/tests/pub/pub_cache_test.dart b/utils/tests/pub/pub_cache_test.dart
index 0dc1d3842d040084b209a7e577edc072821c9601..b59717bd53b46bf95e867b8102a8293bb81d5c00 100644
--- a/utils/tests/pub/pub_cache_test.dart
+++ b/utils/tests/pub/pub_cache_test.dart
@@ -6,12 +6,8 @@ library pub_cache_test;
import 'dart:io';
import 'dart:json' as json;
-
-import '../../../pkg/scheduled_test/lib/scheduled_test.dart';
-
-import '../../pub/io.dart';
-import 'descriptor.dart' as d;
import 'test_pub.dart';
+import '../../pub/io.dart';
main() {
initConfig();
@@ -44,36 +40,34 @@ main() {
integration('running pub cache list on empty cache', () {
// Set up a cache.
- d.dir(cachePath, [
- d.dir('hosted', [
- d.dir('pub.dartlang.org', [
+ dir(cachePath, [
+ dir('hosted', [
+ dir('pub.dartlang.org', [
])
])
- ]).create();
+ ]).scheduleCreate();
schedulePub(args: ['cache', 'list'], output: '{"packages":{}}');
});
integration('running pub cache list', () {
// Set up a cache.
- d.dir(cachePath, [
- d.dir('hosted', [
- d.dir('pub.dartlang.org', [
- d.dir("foo-1.2.3", [
- d.libPubspec("foo", "1.2.3"),
- d.libDir("foo")
+ dir(cachePath, [
+ dir('hosted', [
+ dir('pub.dartlang.org', [
+ dir("foo-1.2.3", [
+ libPubspec("foo", "1.2.3"),
+ libDir("foo")
]),
- d.dir("bar-2.0.0", [
- d.libPubspec("bar", "2.0.0"),
- d.libDir("bar") ])
+ dir("bar-2.0.0", [
+ libPubspec("bar", "2.0.0"),
+ libDir("bar") ])
])
])
- ]).create();
+ ]).scheduleCreate();
schedulePub(args: ['cache', 'list'], output:
- new RegExp(r'\{"packages":\{"bar":\{"version":"2\.0\.0","location":'
- r'"[^"]+bar-2\.0\.0"\},"foo":\{"version":"1\.2\.3","location":'
- r'"[^"]+foo-1\.2\.3"\}\}\}$'));
+ new RegExp(r'\{"packages":\{"bar":\{"version":"2\.0\.0","location":"[^"]+bar-2\.0\.0"\},"foo":\{"version":"1\.2\.3","location":"[^"]+foo-1\.2\.3"\}\}\}$'));
});
}
« no previous file with comments | « utils/tests/pub/oauth2_test.dart ('k') | utils/tests/pub/pub_lish_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698