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.
4
5import unittest
6
7from http_client_local import HttpClientLocal
8
9class HttpClientLocalTest(unittest.TestCase):
10
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))
16