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

Unified Diff: tests/dartino_compiler/serialize_settings_tests.dart

Issue 1659163007: Rename fletch -> dartino (Closed) Base URL: https://github.com/dartino/sdk.git@master
Patch Set: address comments Created 4 years, 11 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 | « tests/dartino_compiler/run.dart ('k') | tests/dartino_compiler/test_incremental_debug_info.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/dartino_compiler/serialize_settings_tests.dart
diff --git a/tests/fletchc/serialize_settings_tests.dart b/tests/dartino_compiler/serialize_settings_tests.dart
similarity index 85%
rename from tests/fletchc/serialize_settings_tests.dart
rename to tests/dartino_compiler/serialize_settings_tests.dart
index 894971b2b983db97e25257e5e8226e2d028c9815..035681d8ccc7a3b4ef0f0a623f1ccdfde09be832 100644
--- a/tests/fletchc/serialize_settings_tests.dart
+++ b/tests/dartino_compiler/serialize_settings_tests.dart
@@ -3,20 +3,20 @@
// BSD-style license that can be found in the LICENSE.md file.
/// Tests that [Settings] instances can be serialized and deserialized.
-library fletch_tests.settings_persist;
+library dartino_tests.settings_persist;
import 'dart:async' show Future;
import 'dart:convert';
-import 'package:fletchc/src/worker/developer.dart' show
+import 'package:dartino_compiler/src/worker/developer.dart' show
Address,
DeviceType,
IncrementalMode,
Settings,
parseSettings;
-import 'package:fletchc/src/verbs/infrastructure.dart' show
+import 'package:dartino_compiler/src/verbs/infrastructure.dart' show
fileUri;
import 'package:expect/expect.dart';
@@ -25,7 +25,7 @@ void testSettingsRoundTrip(Settings settings) {
Settings before = settings;
Map<String, dynamic> json = before.toJson();
Settings after = parseSettings(const JsonCodec().encode(json),
- Uri.parse("file:///dummy.fletch-settings"));
+ Uri.parse("file:///dummy.dartino-settings"));
Expect.equals(before.packages, after.packages);
Expect.listEquals(before.options, after.options);
Expect.mapEquals(before.constants, after.constants);
« no previous file with comments | « tests/dartino_compiler/run.dart ('k') | tests/dartino_compiler/test_incremental_debug_info.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698