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

Unified Diff: sdk/lib/_internal/pub/test/serve/web_socket/path_to_urls_multiple_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
Index: sdk/lib/_internal/pub/test/serve/web_socket/path_to_urls_multiple_test.dart
diff --git a/sdk/lib/_internal/pub/test/serve/web_socket/asset_id_to_urls_multiple_test.dart b/sdk/lib/_internal/pub/test/serve/web_socket/path_to_urls_multiple_test.dart
similarity index 83%
rename from sdk/lib/_internal/pub/test/serve/web_socket/asset_id_to_urls_multiple_test.dart
rename to sdk/lib/_internal/pub/test/serve/web_socket/path_to_urls_multiple_test.dart
index c5e35dfc20a33c92021e0f925a48830147b5fed1..d31bf9d5d40137106eb3efde8acbb1d007c0858a 100644
--- a/sdk/lib/_internal/pub/test/serve/web_socket/asset_id_to_urls_multiple_test.dart
+++ b/sdk/lib/_internal/pub/test/serve/web_socket/path_to_urls_multiple_test.dart
@@ -14,7 +14,7 @@ import '../utils.dart';
main() {
// TODO(rnystrom): Split into independent tests.
initConfig();
- integration("assetIdToUrls returns multiple urls if servers overlap", () {
+ integration("pathToUrls returns multiple urls if servers overlap", () {
d.dir(appPath, [
d.appPubspec(),
d.dir("test", [
@@ -32,8 +32,8 @@ main() {
schedule(() {
expectWebSocketCall({
- "command": "assetIdToUrls",
- "path": "web/index.html"
+ "command": "pathToUrls",
+ "path": path.join("web", "index.html")
}, replyEquals: {
"urls": [
getServerUrl("web", "index.html")
@@ -41,8 +41,8 @@ main() {
});
expectWebSocketCall({
- "command": "assetIdToUrls",
- "path": "web/sub/bar.html"
+ "command": "pathToUrls",
+ "path": path.join("web", "sub", "bar.html")
}, replyEquals: {
"urls": [
getServerUrl("web", "sub/bar.html"),

Powered by Google App Engine
This is Rietveld 408576698