コード例 #1
0
ファイル: test_qt_calendar.py プロジェクト: bgrant/enaml
class TestQtCalendar(object):
    """ Unit tests for the QtCalendar

    """
    def __init__(self):
        """ Create an application instance so that widgets can be created

        """
        if not QApplication.instance():
            self.app = QApplication([])
        
    def setUp(self):
        """ Set up the widget for testing

        """
        self.calendar = QtCalendar(None, uuid4().hex, QtLocalPipe(uuid4))
        self.calendar.create()
        
    def test_set_date(self):
        """ Test the QtCalendar's set_date command

        """
        date = datetime.date.today()
        self.calendar.recv_message({'action':'set-date', 'date':str(date)})
        widget_date = qdate_to_python(self.calendar.widget.selectedDate())
        assert widget_date == date

    def test_set_max_date(self):
        """ Test the QtCalendar's set_max_date command

        """
        max_date = datetime.date(7999, 12, 31)
        self.calendar.recv_message({'action':'set-maximum',
                                    'maximum':str(max_date)})
        widget_max_date = qdate_to_python(self.calendar.widget.maximumDate())
        assert widget_max_date == max_date
        
    def test_set_min_date(self):
        """ Test the QtCalendar's set_min_date command

        """
        min_date = datetime.date(1752, 9, 14)
        self.calendar.recv_message({'action':'set-minimum',
                                    'minimum':str(min_date)})
        widget_min_date = qdate_to_python(self.calendar.widget.minimumDate())
        assert widget_min_date == min_date
コード例 #2
0
ファイル: test_qt_calendar.py プロジェクト: bgrant/enaml
    def setUp(self):
        """ Set up the widget for testing

        """
        self.calendar = QtCalendar(None, uuid4().hex, QtLocalPipe(uuid4))
        self.calendar.create()