1# (C) Copyright 2005-2020 Enthought, Inc., Austin, TX
2# All rights reserved.
3#
4# This software is provided without warranty under the terms of the BSD
5# license included in LICENSE.txt and may be redistributed only under
6# the conditions described in the aforementioned license. The license
7# is also available online at http://www.enthought.com/licenses/BSD.txt
8#
9# Thanks for using Enthought open source!
10
11
12import unittest
13
14from traits.testing.unittest_tools import UnittestTools
15
16from ..beep import beep
17
18
19class TestBeep(unittest.TestCase):
20    def test_beep(self):
21        # does it call without error - the best we can do
22        beep()
23