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

Unified Diff: dart/frog/tests/frog/src/NodeConsoleTest.dart

Issue 10164004: Remove frogsh. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Rebased Created 8 years, 8 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 | « dart/frog/tests/frog/src/NodeConsoleHelper.dart ('k') | dart/frog/tests/frog/src/NodeProcessHelper.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/frog/tests/frog/src/NodeConsoleTest.dart
diff --git a/dart/frog/tests/frog/src/NodeConsoleTest.dart b/dart/frog/tests/frog/src/NodeConsoleTest.dart
deleted file mode 100644
index 22e09646e2135edfe1d5ee22666239287696839a..0000000000000000000000000000000000000000
--- a/dart/frog/tests/frog/src/NodeConsoleTest.dart
+++ /dev/null
@@ -1,41 +0,0 @@
-// Copyright (c) 2011, 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.
-
-#library('NodeConsoleTest');
-
-#import('node_config.dart');
-#import('../../../../lib/unittest/unittest.dart');
-#import('../../../lib/node/node.dart');
-#import('NodeTestHelper.dart');
-
-void main() {
- useNodeConfiguration();
- group('console', () {
- final helperProgram = getFilename('NodeConsoleHelper.dart');
- asyncSimpleTests(helperProgram,
- // name-of-test, argument-to-child, stdin-to-child, expected-stdout,
- // expected-stderr
- [
- ['log', 'log', null, 'log\n', ''],
- ['info', 'info', null,'info\n', ''],
- ['warn', 'warn', null,'', 'warn\n'],
- ['error', 'error', null,'', 'error\n'],
- ['dir', 'dir', null, '[ \'dir1\', \'dir2\' ]\n', ''],
- ['assert-true', 'assert-true', null, '', ''],
- ['assert-true2', 'assert-true', null, '', ''],
- ]);
-
- // name-of-test, argument-to-child, stdin-to-child, expected-error-pattern,
- // expected-stdout-pattern, expected-stderr-pattern
- asyncFuzzyTests(helperProgram,
- [
- ['time', 'time', null, null, @'a: \d+ms', null],
- ['trace', 'trace', null, null, null, @'Trace:'],
- ['assert-false', 'assert-false', null,
- @'AssertionError:', null, null],
- ['assert-false2', 'assert-false2', null,
- @'AssertionError: assert-false2', null, null],
- ]);
- });
-}
« no previous file with comments | « dart/frog/tests/frog/src/NodeConsoleHelper.dart ('k') | dart/frog/tests/frog/src/NodeProcessHelper.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698