Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(558)

Side by Side Diff: mojo/public/dart/third_party/shelf_static/test/test_all.dart

Issue 1346773002: Stop running pub get at gclient sync time and fix build bugs (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
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 file.
4
5 library shelf_static.test_all;
6
7 import 'package:scheduled_test/scheduled_test.dart';
8
9 import 'alternative_root_test.dart' as alternative_root;
10 import 'basic_file_test.dart' as basic_file;
11 import 'default_document_test.dart' as default_document;
12 import 'directory_listing_test.dart' as directory_listing;
13 import 'get_handler_test.dart' as get_handler;
14 import 'sample_test.dart' as sample;
15 import 'symbolic_link_test.dart' as symbolic_link;
16
17 void main() {
18 group('alternative_root', alternative_root.main);
19 group('basic_file', basic_file.main);
20 group('default_document', default_document.main);
21 group('directory_listing', directory_listing.main);
22 group('get_handler', get_handler.main);
23 group('sample', sample.main);
24 group('symbolic_link', symbolic_link.main);
25 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698