| Index: tests/standalone/io/options_test.dart
|
| ===================================================================
|
| --- tests/standalone/io/options_test.dart (revision 26205)
|
| +++ tests/standalone/io/options_test.dart (working copy)
|
| @@ -10,6 +10,7 @@
|
|
|
| main() {
|
| var opts = new Options();
|
| + opts.arguments.remove('--no-fancy-stacks'); // The test runner can add this.
|
|
|
| // Basic test for functionality.
|
| Expect.equals(3, opts.arguments.length);
|
| @@ -27,6 +28,7 @@
|
|
|
| // Check that a new options object still gets the original arguments.
|
| var opts2 = new Options();
|
| + opts2.arguments.remove('--no-fancy-stacks');
|
| Expect.equals(3, opts2.arguments.length);
|
| Expect.equals(10, int.parse(opts2.arguments[0]));
|
| Expect.equals("options_test", opts2.arguments[1]);
|
|
|