blob: 08711e455817ca18acbf2f7facf74b9ecc75c82c [file] [log] [blame]
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05001#! /usr/bin/env python
2# ex:ts=4:sw=4:sts=4:et
3# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
4#
5# BitBake Toaster Implementation
6#
7# Copyright (C) 2013-2016 Intel Corporation
8#
9# This program is free software; you can redistribute it and/or modify
10# it under the terms of the GNU General Public License version 2 as
11# published by the Free Software Foundation.
12#
13# This program is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16# GNU General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License along
19# with this program; if not, write to the Free Software Foundation, Inc.,
20# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21#
22# The Wait class and some of SeleniumDriverHelper and SeleniumTestCase are
23# modified from Patchwork, released under the same licence terms as Toaster:
24# https://github.com/dlespiau/patchwork/blob/master/patchwork/tests.browser.py
25
26"""
27Helper methods for creating Toaster Selenium tests which run within
28the context of Django unit tests.
29"""
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050030from django.contrib.staticfiles.testing import StaticLiveServerTestCase
Patrick Williamsc0f7c042017-02-23 20:41:17 -060031from tests.browser.selenium_helpers_base import SeleniumTestCaseBase
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050032
Patrick Williamsc0f7c042017-02-23 20:41:17 -060033class SeleniumTestCase(SeleniumTestCaseBase, StaticLiveServerTestCase):
34 pass