| Index: tests/dartino_tests/self_tests.dart
|
| diff --git a/tests/fletch_tests/self_tests.dart b/tests/dartino_tests/self_tests.dart
|
| similarity index 88%
|
| rename from tests/fletch_tests/self_tests.dart
|
| rename to tests/dartino_tests/self_tests.dart
|
| index 4b02958cda6747fa2a63432485d21c811c2f88b8..7139e8a3c7367f338718d53496b85a7e804a0f43 100644
|
| --- a/tests/fletch_tests/self_tests.dart
|
| +++ b/tests/dartino_tests/self_tests.dart
|
| @@ -2,8 +2,8 @@
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE.md file.
|
|
|
| -/// Tests of fletch_test_suite.dart.
|
| -library fletch_tests.self_tests;
|
| +/// Tests of dartino_test_suite.dart.
|
| +library dartino_tests.self_tests;
|
|
|
| import 'dart:async' show
|
| Completer,
|
| @@ -17,7 +17,7 @@ import 'package:expect/expect.dart' show
|
|
|
| import 'messages.dart';
|
|
|
| -import 'fletch_test_suite.dart' as suite show print;
|
| +import 'dartino_test_suite.dart' as suite show print;
|
|
|
| /// Test sleeps for 3 seconds.
|
| Future testSleepForThreeSeconds() async {
|
| @@ -52,5 +52,5 @@ Future testMessages() async {
|
|
|
| /// Test print method.
|
| Future testPrint() async {
|
| - suite.print("Debug print from fletch_tests works.");
|
| + suite.print("Debug print from dartino_tests works.");
|
| }
|
|
|