blob: ae0442bec4a3389ba5a395d74838a6d378a1286c [file] [log] [blame]
// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS d.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:pub/src/exit_codes.dart' as exit_codes;
import '../descriptor.dart' as d;
import '../serve/utils.dart';
import '../test_pub.dart';
main() {
test("fails to load a pubspec with reserved transformer", () async {
await serveBarback();
await d.dir(appPath, [
d.pubspec({
"name": "myapp",
"transformers": ["\$nonexistent"],
"dependencies": {"barback": "any"}
}),
d.dir("lib", [
d.dir("src", [d.file("transformer.dart", REWRITE_TRANSFORMER)])
])
]).create();
await pubGet();
var pub = await startPubServe();
expect(
pub.stderr,
emitsThrough(contains('Invalid transformer config: Unsupported '
'built-in transformer \$nonexistent.')));
await pub.shouldExit(exit_codes.DATA);
});
}