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

Unified Diff: dart/frog/tests/frog/src/NodeProcessTest.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/NodeProcessHelper.dart ('k') | dart/frog/tests/frog/src/NodeTestHelper.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/frog/tests/frog/src/NodeProcessTest.dart
diff --git a/dart/frog/tests/frog/src/NodeProcessTest.dart b/dart/frog/tests/frog/src/NodeProcessTest.dart
deleted file mode 100644
index aa554f30c52bb10c8f2cd5815c890a85fbe16e44..0000000000000000000000000000000000000000
--- a/dart/frog/tests/frog/src/NodeProcessTest.dart
+++ /dev/null
@@ -1,50 +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('NodeProcessTest');
-
-#import('node_config.dart');
-#import('../../../../lib/unittest/unittest.dart');
-#import('../../../lib/node/node.dart');
-#import('NodeTestHelper.dart');
-
-void main() {
- useNodeConfiguration();
- group('process', () {
- final helperProgram = getFilename('NodeProcessHelper.dart');
- asyncTest('nextTick', 1,
- () {
- process.nextTick(() {
- callbackDone();
- });
- });
-
- asyncTestExitCode('exitCode', helperProgram, ['exitCode'], 42);
-
- asyncSimpleTests(helperProgram,
- // name-of-test, argument-to-child, stdin-to-child, expected-stdout,
- // expected-stderr
- [
- ['event-exit', 'event-exit', null, 'exit\n', ''],
- ['event-uncaughtException', 'event-uncaughtException', null,
- 'uncaughtException: Exception: exception2\n', ''],
- ['event-catchsignal', 'event-catchsignal', null,
- 'caught signal\n', ''],
- ['stdout', 'stdout', null, 'stdout\n', ''],
- ['stderr', 'stderr', null, '', 'stderr\n'],
- ['stdin', 'stdin', 'some text\nsome more text\n',
- 'some text\nsome more text\n', ''],
- ['argv', 'argv', null, 'argv\n', ''],
- ['chdir-cwd', 'chdir-cwd', null, '/\n', ''],
- ]);
-
- asyncFuzzyTests(helperProgram,
- // name-of-test, argument-to-child, stdin-to-child,
- // expected-error-pattern, expected-stdout-pattern,
- // expected-stderr-pattern
- [
- ['execPath', 'execPath', null, null, 'node', null],
- ]);
- });
-}
« no previous file with comments | « dart/frog/tests/frog/src/NodeProcessHelper.dart ('k') | dart/frog/tests/frog/src/NodeTestHelper.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698