Chromium Code Reviews| Index: sdk/lib/_internal/pub/test/build/utils.dart |
| diff --git a/sdk/lib/_internal/pub/test/build/utils.dart b/sdk/lib/_internal/pub/test/build/utils.dart |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..0450de0853e84ef79117b2e4665ef956968cbfaf |
| --- /dev/null |
| +++ b/sdk/lib/_internal/pub/test/build/utils.dart |
| @@ -0,0 +1,41 @@ |
| +// Copyright (c) 2013, 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. |
| + |
| +import 'dart:convert'; |
| + |
| +import '../descriptor.dart' as d; |
| +import '../test_pub.dart'; |
| + |
| +void serveBrowserPackage() { |
|
nweiz
2014/02/10 21:42:00
I'm not a huge fan of the pattern of scattering th
Bob Nystrom
2014/02/10 22:08:19
I actually prefer more tightly scoped files. test_
|
| + serve([ |
| + d.dir('api', [ |
| + d.dir('packages', [ |
| + d.file('browser', JSON.encode({ |
| + 'versions': [packageVersionApiMap(packageMap('browser', '1.0.0'))] |
| + })), |
| + d.dir('browser', [ |
| + d.dir('versions', [ |
| + d.file('1.0.0', JSON.encode( |
| + packageVersionApiMap( |
| + packageMap('browser', '1.0.0'), |
| + full: true))) |
| + ]) |
| + ]) |
| + ]) |
| + ]), |
| + d.dir('packages', [ |
| + d.dir('browser', [ |
| + d.dir('versions', [ |
| + d.tar('1.0.0.tar.gz', [ |
| + d.file('pubspec.yaml', yaml(packageMap("browser", "1.0.0"))), |
| + d.dir('lib', [ |
| + d.file('dart.js', 'contents of dart.js'), |
| + d.file('interop.js', 'contents of interop.js') |
| + ]) |
| + ]) |
| + ]) |
| + ]) |
| + ]) |
| + ]); |
| +} |