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

Unified Diff: chrome/test/functional/chromeos_cellular_sanity.py

Issue 23359003: Eliminate unused PYAUTO tests and TestingAutomationProvider methods (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years, 4 months 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 | « chrome/test/functional/PYAUTO_TESTS ('k') | chrome/test/functional/chromeos_device_policy.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/functional/chromeos_cellular_sanity.py
diff --git a/chrome/test/functional/chromeos_cellular_sanity.py b/chrome/test/functional/chromeos_cellular_sanity.py
deleted file mode 100755
index 2f06d48933f07216a5ec89dbc6cd61237002f39b..0000000000000000000000000000000000000000
--- a/chrome/test/functional/chromeos_cellular_sanity.py
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/usr/bin/env python
-# Copyright (c) 2011 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.
-
-import logging
-import os
-import sys
-import time
-
-import pyauto_functional
-import pyauto # pyauto_functional must come before pyauto
-
-class ChromeosCellularSanity(pyauto.PyUITest):
- """Tests for ChromeOS network related functions."""
-
- assert os.popen('modem status').read(), 'Device needs modem to run test.'
-
- def testConnectCellularNetwork(self):
- """Connect to the cellular network if present."""
-
- self.ConnectToCellularNetwork()
- self.assertTrue(self.NetworkScan().get('connected_cellular'),
- 'Failed to connect to cellular network.')
- self.DisconnectFromCellularNetwork()
- self.assertFalse(self.NetworkScan().get('connected_cellular'),
- 'Failed to disconnect from cellular network.')
-
-
-if __name__ == '__main__':
- pyauto_functional.Main()
« no previous file with comments | « chrome/test/functional/PYAUTO_TESTS ('k') | chrome/test/functional/chromeos_device_policy.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698