Mike Frysinger | 8654f91 | 2023-08-30 23:01:34 -0400 | [diff] [blame^] | 1 | # 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 | |||||
7 | from chromite.scripts import update_chroot | ||||
8 | |||||
9 | |||||
10 | def test_main(run_mock): # pylint: disable=unused-argument | ||||
11 | """Smoke test.""" | ||||
12 | result = update_chroot.main([]) | ||||
13 | assert result == 0 |