File: test_shadow_group.py

package info (click to toggle)
python-traitsui 4.5.1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 13,540 kB
  • ctags: 10,118
  • sloc: python: 41,530; makefile: 121; sh: 5
file content (36 lines) | stat: -rw-r--r-- 1,323 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#------------------------------------------------------------------------------
#
#  Copyright (c) 2014, Enthought, Inc.
#  All rights reserved.
#
#  This software is provided without warranty under the terms of the BSD
#  license included in enthought/LICENSE.txt and may be redistributed only
#  under the conditions described in the aforementioned license.  The license
#  is also available online at http://www.enthought.com/licenses/BSD.txt
#
#------------------------------------------------------------------------------
""" Tests for the ShadowGroup class.
"""

import unittest

from traitsui.api import Group
from traitsui.group import ShadowGroup


class TestShadowGroup(unittest.TestCase):
    def test_creation_sets_shadow_first(self):
        group = Group()
        # We end up with a DelegationError if the 'shadow' trait is not set
        # first.  Initialization order is dependent on dictionary order, which
        # we can't control, so we throw in a good number of other traits to
        # increase the chance that some other trait is set first.
        shadow_group = ShadowGroup(
            label='dummy',
            show_border=True,
            show_labels=True,
            show_left=True,
            orientation='horizontal',
            scrollable=True,
            shadow=group,
        )