Revert "Always activate MojoApplicationHost"
[chromium-blink-merge.git] / tools / findit / common / http_client_local_unittest.py
blob40d41fa50582b0bace6240b5a6da4d24a6f99997
1 # Copyright (c) 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
5 import unittest
7 from http_client_local import HttpClientLocal
9 class HttpClientLocalTest(unittest.TestCase):
11 def testGetWithoutParameters(self):
12 code, deps = HttpClientLocal.Get(
13 'https://src.chromium.org/chrome/trunk/src/DEPS')
14 self.assertEqual(200, code)
15 self.assertTrue(isinstance(deps, str))