• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright (c) 2012 The Chromium OS 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
5AUTHOR = "ChromeOS Team"
6NAME = "network_3GModemPresent"
7PURPOSE = "Verify 3G modem is visible to Flimflam."
8CRITERIA = """
9This test will fail if neither Cromo nor ModemManager is exporting a modem
10device via flimflam.
11"""
12TIME = "SHORT"
13TEST_CATEGORY = "Functional"
14TEST_CLASS = "network"
15TEST_TYPE = "client"
16
17DOC = """
18  Tests that a 3G modem is available.
19
20  The test attempts to find a flimflam device corresponding to a
21  cellular modem.
22
23"""
24
25from autotest_lib.client.cros.cellular import test_environment
26
27test_env = test_environment.CellularOTATestEnvironment()
28job.run_test('network_3GModemPresent', test_env=test_env)
29