Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS d.file | |
|
nweiz
2013/07/25 22:58:58
2013. Same for other new test files.
Bob Nystrom
2013/07/26 20:20:11
Done.
| |
| 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 d.file. | |
|
nweiz
2013/07/25 22:58:58
"LICENSE file."
Bob Nystrom
2013/07/26 20:20:11
Ha, done. :)
| |
| 4 | |
| 5 library pub_tests; | |
| 6 | |
| 7 import 'dart:io'; | |
| 8 | |
| 9 import '../descriptor.dart' as d; | |
| 10 import '../test_pub.dart'; | |
| 11 import 'utils.dart'; | |
| 12 | |
| 13 main() { | |
| 14 initConfig(); | |
| 15 integration("responds with a 404 for a missing file", () { | |
| 16 d.dir(appPath, [ | |
| 17 d.appPubspec() | |
| 18 ]).create(); | |
| 19 | |
| 20 startPubServe(); | |
| 21 requestShould404("index.html"); | |
| 22 endPubServe(); | |
| 23 }); | |
| 24 } | |
| OLD | NEW |