Project

General

Profile

Download (793 Bytes) Statistics
| Branch: | Tag: | Revision:

haketilo / test / test_integration.py @ 4c6a2323

1
# SPDX-License-Identifier: CC0-1.0
2

    
3
"""
4
Haketilo integration tests
5
"""
6

    
7
# This file is part of Haketilo
8
#
9
# Copyright (C) 2022 Wojtek Kosior <koszko@koszko.org>
10
#
11
# This program is free software: you can redistribute it and/or modify
12
# it under the terms of the CC0 1.0 Universal License as published by
13
# the Creative Commons Corporation.
14
#
15
# This program is distributed in the hope that it will be useful,
16
# but WITHOUT ANY WARRANTY; without even the implied warranty of
17
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
# CC0 1.0 Universal License for more details.
19

    
20
import pytest
21
from selenium.webdriver.support.ui import WebDriverWait
22

    
23
@pytest.mark.usefixtures('haketilo')
24
def test_integration(driver):
25
    #from time import sleep
26
    #sleep(100000)
27

    
28
    # TODO!!!
29
    pass
(10-10/11)