File: test_beep.py

package info (click to toggle)
python-pyface 6.1.2-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 11,756 kB
  • sloc: python: 39,728; makefile: 79
file content (14 lines) | stat: -rw-r--r-- 274 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from __future__ import absolute_import

import unittest

from traits.testing.unittest_tools import UnittestTools

from ..beep import beep


class TestBeep(unittest.TestCase):

    def test_beep(self):
        # does it call without error - the best we can do
        beep()