Index: chrome/test/functional/chromeos_offline.py |
diff --git a/chrome/test/functional/chromeos_offline.py b/chrome/test/functional/chromeos_offline.py |
deleted file mode 100755 |
index a4120800cbcb55ef408b0e6d8b3704e9deecc95b..0000000000000000000000000000000000000000 |
--- a/chrome/test/functional/chromeos_offline.py |
+++ /dev/null |
@@ -1,30 +0,0 @@ |
-#!/usr/bin/env python |
-# Copyright (c) 2012 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 pyauto_functional |
-import pyauto |
- |
- |
-class TestOffline(pyauto.PyUITest): |
- """Tests the offline detection for ChromeOS.""" |
- |
- assert pyauto.PyUITest.IsChromeOS(), 'Works on ChromeOS only.' |
- |
- def tearDown(self): |
- self.RestoreOnline() |
- pyauto.PyUITest.tearDown(self) |
- |
- def testGoOffline(self): |
- """Tests the GoOffline pyauto method.""" |
- |
- self.GoOffline() |
- # Device takes a little bit of time to realize it's offline/online. |
- self.assertTrue(self.WaitUntil( |
- lambda: self.NetworkScan().get('offline_mode')), |
- msg='We are not offline.') |
- |
- |
-if __name__ == '__main__': |
- pyauto_functional.Main() |