blob: 9f7157590f50990495fe6825c20ec982cd3adb27 [file] [log] [blame]
# Copyright (c) 2010 The Chromium OS 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
from autotest_lib.client.bin import test
from autotest_lib.client.cros import power_status
class power_Status(test.test):
version = 1
def run_once(self):
status = power_status.get_status()
logging.info("battery_energy: %f" % status.battery[0].energy)
logging.info("linepower_online: %s" % status.linepower[0].online)