Source code for unit.calendar.bosparanian.periodpicker

# Copyright (C) 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018  Rickard Lindberg, Roger Lindberg
#
# This file is part of Timeline.
#
# Timeline is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Timeline is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Timeline.  If not, see <http://www.gnu.org/licenses/>.


from unittest.mock import Mock
import humblewx

from timelinelib.calendar.bosparanian.timetype.timetype import BosparanianTimeType
from timelinelib.canvas.data import TimePeriod
from timelinelib.config.dotfile import Config
from timelinelib.test.cases.unit import UnitTestCase
from timelinelib.wxgui.framework import Dialog


[docs]class TestBosparanianPeriodPicker(UnitTestCase):
[docs] def test_show_manual_test_dialog(self): self.show_dialog(BosparanianPeriodPickerTestDialog)
[docs]class BosparanianPeriodPickerTestDialog(Dialog): """ <BoxSizerVertical> <FlexGridSizer columns="1" border="ALL"> <Button label="before" /> <PeriodPicker time_type="$(time_type)" name="period_picker" config="$(config)" /> <Button label="after" /> </FlexGridSizer> </BoxSizerVertical> """
[docs] def __init__(self): Dialog.__init__(self, humblewx.Controller, None, { "time_type": BosparanianTimeType(), "config": self._create_mock_config(), }) self.period_picker.SetValue( TimePeriod( BosparanianTimeType().now(), BosparanianTimeType().now() ) )
def _create_mock_config(self): config = Mock(Config) return config