blob: 5be86fe687a22669e31440c9f05c4dfb708ee625 [file] [log] [blame]
#!/usr/bin/env fuchsia-vendored-python
# Copyright 2021 The Fuchsia 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 lib
import unittest
class PyHostTestWithLibTests(unittest.TestCase):
def test_truthy(self) -> None:
self.assertEqual(lib.truthy(), True)
def test_falsy(self) -> None:
self.assertEqual(lib.falsy(), False)
if __name__ == "__main__":
unittest.main()