diff options
Diffstat (limited to 'chrome/test/functional/chromeos_power.py')
-rwxr-xr-x | chrome/test/functional/chromeos_power.py | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/chrome/test/functional/chromeos_power.py b/chrome/test/functional/chromeos_power.py deleted file mode 100755 index b14886d..0000000 --- a/chrome/test/functional/chromeos_power.py +++ /dev/null @@ -1,23 +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 pyauto_functional -import pyauto - - -class ChromeosPower(pyauto.PyUITest): - """Tests for ChromeOS power library and daemon.""" - - def testBatteryInfo(self): - """Print some information about the battery.""" - result = self.GetBatteryInfo() - self.assertTrue(result) - logging.debug(result) - - -if __name__ == '__main__': - pyauto_functional.Main() |