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

Unified Diff: pkg/unittest/lib/matcher.dart

Issue 11301046: Restructure pkg/unittest and pkg/webdriver to follow the pub conventions. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: pkg/unittest/lib/matcher.dart
===================================================================
--- pkg/unittest/lib/matcher.dart (revision 0)
+++ pkg/unittest/lib/matcher.dart (revision 0)
@@ -0,0 +1,21 @@
+// Copyright (c) 2012, 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.
+
+// TODO(gram) - when we can do package imports from within packages
+// without Dartdoc choking, this should be moved to a separate package.
Siggi Cherem (dart-lang) 2012/10/31 20:54:02 I'm not sure I understand this TODO - we want matc
gram 2012/11/01 21:23:19 Personally it seems to me it needn't be, and could
+
+library matcher;
Siggi Cherem (dart-lang) 2012/10/31 20:54:02 we should add some top-level dartdocs to this libr
gram 2012/11/01 21:23:19 Done.
+
+part 'basematcher.dart';
Siggi Cherem (dart-lang) 2012/10/31 20:54:02 I think we should create a src/ subdirectory and m
gram 2012/11/01 21:23:19 Done.
+part 'collection_matchers.dart';
+part 'core_matchers.dart';
+part 'description.dart';
+part 'expect.dart';
+part 'future_matchers.dart';
+part 'interfaces.dart';
+part 'map_matchers.dart';
+part 'numeric_matchers.dart';
+part 'operator_matchers.dart';
+part 'string_matchers.dart';
+
Siggi Cherem (dart-lang) 2012/10/31 20:54:02 remove empty line
gram 2012/11/01 21:23:19 Done.

Powered by Google App Engine
This is Rietveld 408576698