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

Unified Diff: mojo/shell/mojo_url_resolver_unittest.cc

Issue 775343004: Move //mojo/shell to //shell (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years 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 | « mojo/shell/mojo_url_resolver.cc ('k') | mojo/shell/network_application_loader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/shell/mojo_url_resolver_unittest.cc
diff --git a/mojo/shell/mojo_url_resolver_unittest.cc b/mojo/shell/mojo_url_resolver_unittest.cc
deleted file mode 100644
index 292fc51a4bd51b39cbee3d1d6c121ea2bb5f254c..0000000000000000000000000000000000000000
--- a/mojo/shell/mojo_url_resolver_unittest.cc
+++ /dev/null
@@ -1,32 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "mojo/shell/mojo_url_resolver.h"
-
-#include "base/logging.h"
-#include "testing/gtest/include/gtest/gtest.h"
-
-namespace mojo {
-namespace shell {
-namespace test {
-namespace {
-
-typedef testing::Test MojoURLResolverTest;
-
-TEST_F(MojoURLResolverTest, MojoURLsFallThrough) {
- MojoURLResolver resolver;
- resolver.AddCustomMapping(GURL("mojo:test"), GURL("mojo:foo"));
- const GURL base_url("file:/base");
- resolver.SetBaseURL(base_url);
- std::string resolved(resolver.Resolve(GURL("mojo:test")).spec());
- // Resolved must start with |base_url|.
- EXPECT_EQ(base_url.spec(), resolved.substr(0, base_url.spec().size()));
- // And must contain foo.
- EXPECT_NE(std::string::npos, resolved.find("foo"));
-}
-
-} // namespace
-} // namespace test
-} // namespace shell
-} // namespace mojo
« no previous file with comments | « mojo/shell/mojo_url_resolver.cc ('k') | mojo/shell/network_application_loader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698