blob: 965901b6e394dba02ee4dd332a3c17835f8cc715 [file] [log] [blame]
Mike Frysinger8654f912023-08-30 23:01:34 -04001# Copyright 2023 The ChromiumOS Authors
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5"""Tests for update_chroot."""
6
7from chromite.scripts import update_chroot
8
9
10def test_main(run_mock): # pylint: disable=unused-argument
11 """Smoke test."""
12 result = update_chroot.main([])
13 assert result == 0