blob: 54001a51610a0c8ef90309ae3dc9c901b04caa17 [file] [log] [blame]
// Copyright (c) 2014, 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 'package:test/test.dart';
import 'package:path/path.dart' as path;
import '../descriptor.dart' as d;
import '../test_pub.dart';
const SCRIPT = r"""
import '../../a.dart';
import '../b.dart';
main() {
print("$a $b");
}
""";
void main() {
test(
'allows assets in parent directories of the entrypoint to be '
'accessed', () async {
await d.dir(appPath, [
d.appPubspec(),
d.dir('tool', [
d.file('a.dart', "var a = 'a';"),
d.dir('a', [
d.file('b.dart', "var b = 'b';"),
d.dir('b', [d.file('app.dart', SCRIPT)])
])
])
]).create();
await pubGet();
var pub = await pubRun(args: [path.join('tool', 'a', 'b', 'app')]);
expect(pub.stdout, emits('a b'));
await pub.shouldExit();
});
}