blob: fb0ffa12e50a99a769b04ed31e1fe9524101354f [file] [log] [blame]
# Copyright 2014 The ChromiumOS Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""Unittests for cros_list_overlays.py"""
from chromite.lib import cros_test_lib
from chromite.lib import portage_util
from chromite.scripts import cros_list_overlays
class ListOverlaysTest(cros_test_lib.MockTestCase):
"""Tests for main()"""
def setUp(self):
self.find_mock = self.PatchObject(portage_util, "FindOverlays")
def testSmoke(self):
"""Basic confidence check"""
cros_list_overlays.main([])
def testAll(self):
"""Verify --all returns a lot."""
cros_list_overlays.main(["--all"])
def testBoard(self):
"""Check --board handling."""
cros_list_overlays.main(["--board", "eve"])