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

Side by Side Diff: test/serve/serve_from_dependency_lib_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, 6 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) 2013, the Dart project authors. Please see the AUTHORS d.file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS d.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 '../descriptor.dart' as d; 7 import '../descriptor.dart' as d;
8 import '../test_pub.dart'; 8 import '../test_pub.dart';
9 import 'utils.dart'; 9 import 'utils.dart';
10 10
11 main() { 11 main() {
12 initConfig();
13 integration("'packages' URLs look in the dependency's lib directory", () { 12 integration("'packages' URLs look in the dependency's lib directory", () {
14 d.dir("foo", [ 13 d.dir("foo", [
15 d.libPubspec("foo", "0.0.1"), 14 d.libPubspec("foo", "0.0.1"),
16 d.dir("lib", [ 15 d.dir("lib", [
17 d.file("lib.dart", "foo() => 'foo';"), 16 d.file("lib.dart", "foo() => 'foo';"),
18 d.dir("sub", [ 17 d.dir("sub", [
19 d.file("lib.dart", "bar() => 'bar';"), 18 d.file("lib.dart", "bar() => 'bar';"),
20 ]) 19 ])
21 ]) 20 ])
22 ]).create(); 21 ]).create();
23 22
24 d.dir(appPath, [ 23 d.dir(appPath, [
25 d.appPubspec({ 24 d.appPubspec({
26 "foo": {"path": "../foo"} 25 "foo": {"path": "../foo"}
27 }) 26 })
28 ]).create(); 27 ]).create();
29 28
30 pubServe(shouldGetFirst: true); 29 pubServe(shouldGetFirst: true);
31 requestShouldSucceed("packages/foo/lib.dart", "foo() => 'foo';"); 30 requestShouldSucceed("packages/foo/lib.dart", "foo() => 'foo';");
32 requestShouldSucceed("packages/foo/sub/lib.dart", "bar() => 'bar';"); 31 requestShouldSucceed("packages/foo/sub/lib.dart", "bar() => 'bar';");
33 32
34 // "packages" can be in a subpath of the URL: 33 // "packages" can be in a subpath of the URL:
35 requestShouldSucceed("foo/packages/foo/lib.dart", "foo() => 'foo';"); 34 requestShouldSucceed("foo/packages/foo/lib.dart", "foo() => 'foo';");
36 requestShouldSucceed("a/b/packages/foo/sub/lib.dart", "bar() => 'bar';"); 35 requestShouldSucceed("a/b/packages/foo/sub/lib.dart", "bar() => 'bar';");
37 endPubServe(); 36 endPubServe();
38 }); 37 });
39 } 38 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698