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

Unified Diff: sdk/lib/_internal/pub/test/serve/web_socket/path_to_urls_with_line_test.dart

Issue 197533007: Change "assetIdToUrls" to "pathToUrls" in the pub websocket API. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: code review Created 6 years, 9 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 | « sdk/lib/_internal/pub/test/serve/web_socket/path_to_urls_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/pub/test/serve/web_socket/path_to_urls_with_line_test.dart
diff --git a/sdk/lib/_internal/pub/test/serve/web_socket/asset_id_to_urls_with_line_test.dart b/sdk/lib/_internal/pub/test/serve/web_socket/path_to_urls_with_line_test.dart
similarity index 80%
rename from sdk/lib/_internal/pub/test/serve/web_socket/asset_id_to_urls_with_line_test.dart
rename to sdk/lib/_internal/pub/test/serve/web_socket/path_to_urls_with_line_test.dart
index 12bc06f3a223be9a86d55993e13058c8e7fc025f..4bc8307a2f6772dafdaccb36d2edee23f80ad817 100644
--- a/sdk/lib/_internal/pub/test/serve/web_socket/asset_id_to_urls_with_line_test.dart
+++ b/sdk/lib/_internal/pub/test/serve/web_socket/path_to_urls_with_line_test.dart
@@ -4,14 +4,16 @@
library pub_tests;
+import 'package:path/path.dart' as p;
import 'package:scheduled_test/scheduled_test.dart';
+
import '../../descriptor.dart' as d;
import '../../test_pub.dart';
import '../utils.dart';
main() {
initConfig();
- integration("assetIdToUrls provides output line if given source", () {
+ integration("pathToUrls provides output line if given source", () {
d.dir(appPath, [
d.appPubspec(),
d.dir("web", [
@@ -23,8 +25,8 @@ main() {
schedule(() {
expectWebSocketCall({
- "command": "assetIdToUrls",
- "path": "web/main.dart",
+ "command": "pathToUrls",
+ "path": p.join("web", "main.dart"),
"line": 12345
}, replyEquals: {
"urls": [getServerUrl("web", "main.dart")],
« no previous file with comments | « sdk/lib/_internal/pub/test/serve/web_socket/path_to_urls_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698