blob: 7d80601aecfd6f9f81b61566a502175b206e953a [file] [log] [blame]
// Copyright (c) 2014, 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.
library pub_tests;
import '../../descriptor.dart' as d;
import '../../test_pub.dart';
import '../utils.dart';
main() {
initConfig();
integration("errors if the directory is not served", () {
d.dir(appPath, [
d.appPubspec(),
d.dir("web", [
d.file("index.html", "<body>")
])
]).create();
pubServe();
// Unbind the directory.
expectWebSocketCall({
"command": "unserveDirectory",
"path": "test"
}, replyEquals: {
"code": "NOT_SERVED",
"error": 'Directory "test" is not bound to a server.'
});
endPubServe();
});
}