File: test_timeout.py

package info (click to toggle)
toro 1.0.1-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 392 kB
  • sloc: python: 2,054; makefile: 128
file content (13 lines) | stat: -rw-r--r-- 211 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
"""
Test toro.Timeout exception.
"""

from tornado.testing import AsyncTestCase

import toro


class TestTimeout(AsyncTestCase):
    def test_str(self):
        exception = toro.Timeout()
        str(exception)