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

Unified Diff: packages/which/test/which_test.dart

Issue 2989763002: Update charted to 0.4.8 and roll (Closed)
Patch Set: Removed Cutch from list of reviewers Created 3 years, 5 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
« no previous file with comments | « packages/which/test/which_impl_test.dart ('k') | packages/yaml/.analysis_options » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: packages/which/test/which_test.dart
diff --git a/packages/which/test/which_test.dart b/packages/which/test/which_test.dart
deleted file mode 100755
index 7511421c7a5c79e365ec26b49ae7de4af1e82656..0000000000000000000000000000000000000000
--- a/packages/which/test/which_test.dart
+++ /dev/null
@@ -1,26 +0,0 @@
-
-library which.test.which;
-
-import 'package:path/path.dart';
-import 'package:unittest/unittest.dart';
-import 'package:which/which.dart';
-
-main() {
- group('which', () {
- // Any dart:io supported platform (*nix, osx, windows) should have `find`.
- test('should find `find`', () => which('find').then(_testResult));
- });
-
- group('whichSync', () {
- // Any dart:io supported platform (*nix, osx, windows) should have `find`.
- test('should find `find`', () {
- _testResult(whichSync('find'));
- });
- });
-}
-
-_testResult(String path) {
- expect(path, isNotNull);
- var base = basenameWithoutExtension(path);
- expect(base, 'find');
-}
« no previous file with comments | « packages/which/test/which_impl_test.dart ('k') | packages/yaml/.analysis_options » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698