2024-12-30 17:40:34 -06:00
|
|
|
# -*- coding: utf-8; -*-
|
2024-12-30 18:28:18 -06:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# Sideshow -- Case/Special Order Tracker
|
2025-02-21 18:13:57 -06:00
|
|
|
# Copyright © 2024-2025 Lance Edgar
|
2024-12-30 18:28:18 -06:00
|
|
|
#
|
|
|
|
# This file is part of Sideshow.
|
|
|
|
#
|
|
|
|
# Sideshow 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.
|
|
|
|
#
|
|
|
|
# Sideshow 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 Sideshow. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#
|
|
|
|
################################################################################
|
2024-12-30 17:40:34 -06:00
|
|
|
"""
|
2025-01-06 17:03:41 -06:00
|
|
|
Sideshow - test utilities
|
2024-12-30 17:40:34 -06:00
|
|
|
"""
|
|
|
|
|
2025-01-06 17:03:41 -06:00
|
|
|
from wuttaweb import testing as base
|
2024-12-30 17:40:34 -06:00
|
|
|
|
|
|
|
|
2025-01-06 17:03:41 -06:00
|
|
|
class WebTestCase(base.WebTestCase):
|
2024-12-30 17:40:34 -06:00
|
|
|
|
2025-01-06 17:03:41 -06:00
|
|
|
def make_config(self, **kwargs):
|
|
|
|
config = super().make_config(**kwargs)
|
|
|
|
config.setdefault('wutta.model_spec', 'sideshow.db.model')
|
|
|
|
config.setdefault('wutta.enum_spec', 'sideshow.enum')
|
2025-02-21 18:13:57 -06:00
|
|
|
config.setdefault(f'{config.appname}.batch.neworder.handler.default_spec',
|
|
|
|
'sideshow.batch.neworder:NewOrderBatchHandler')
|
2025-01-06 17:03:41 -06:00
|
|
|
return config
|