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.
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))