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

Side by Side Diff: test/get/git/check_out_and_upgrade_test.dart

Issue 1215833002: Use the new test runner. (Closed) Base URL: git@github.com:dart-lang/pub.git@master
Patch Set: Created 5 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library pub_tests; 5 library pub_tests;
6 6
7 import 'package:scheduled_test/scheduled_test.dart'; 7 import 'package:scheduled_test/scheduled_test.dart';
8 8
9 import '../../descriptor.dart' as d; 9 import '../../descriptor.dart' as d;
10 import '../../test_pub.dart'; 10 import '../../test_pub.dart';
11 11
12 main() { 12 main() {
13 initConfig();
14 integration('checks out and upgrades a package from Git', () { 13 integration('checks out and upgrades a package from Git', () {
15 ensureGit(); 14 ensureGit();
16 15
17 d.git('foo.git', [ 16 d.git('foo.git', [
18 d.libDir('foo'), 17 d.libDir('foo'),
19 d.libPubspec('foo', '1.0.0') 18 d.libPubspec('foo', '1.0.0')
20 ]).create(); 19 ]).create();
21 20
22 d.appDir({"foo": {"git": "../foo.git"}}).create(); 21 d.appDir({"foo": {"git": "../foo.git"}}).create();
23 22
(...skipping 29 matching lines...) Expand all
53 ]) 52 ])
54 ]).validate(); 53 ]).validate();
55 54
56 d.dir(packagesPath, [ 55 d.dir(packagesPath, [
57 d.dir('foo', [ 56 d.dir('foo', [
58 d.file('foo.dart', 'main() => "foo 2";') 57 d.file('foo.dart', 'main() => "foo 2";')
59 ]) 58 ])
60 ]).validate(); 59 ]).validate();
61 }); 60 });
62 } 61 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698