1# Copyright (c) 2009 Divmod.  See LICENSE for details.
2
3"""
4Tests for L{nevow.taglibrary.tabbedPane}.
5"""
6
7from twisted.trial.unittest import TestCase
8
9
10class TabbedPaneTests(TestCase):
11    def test_import(self):
12        """
13        L{nevow.taglibrary.tabbedPane} can be imported.
14
15        This is a very meager test, and it should certainly be augmented
16        with friends later, but for the time being, it is sufficient to
17        cover the fix I am making, which actually makes the module
18        importable. -exarkun
19        """
20        import nevow.taglibrary.tabbedPane
21