Skip to content
Snippets Groups Projects
Commit 887c99ad authored by thomaswoehlke's avatar thomaswoehlke
Browse files

* Fixed #123 split RkiBundeslaenderService into two Services, one for...

* Fixed #123 split RkiBundeslaenderService into two Services, one for bundeslaender and one for landkreise
* Fixed #128 add fields from csv to RkiLandkreiseImport
* Fixed #139 refactor RkiBundeslaenderServiceDownload to new method scheme introduced 07.02.2021
* Fixed #140 move WhoImport to RKI in: rk_service_import.py
* Fixed #125 implement RkiLandkreise
* Fixed #126 implement RkiBundeslaenderImport
parent e6f7150b
No related branches found
No related tags found
No related merge requests found
Showing
with 44 additions and 0 deletions
from celery.contrib import pytest
from database import app, run_run_with_debug, port
import covid19.blueprints.application.application_views
@pytest.fixture
def test_app():
my_test_app = app
return my_test_app
from flask import render_template, redirect, url_for, flash, Blueprint
from celery import states
from celery.utils.log import get_task_logger
import conftest
def test_url_admin_tasks(client):
assert client.get(url_for('admin.url_admin_tasks')).status_code == 200
def test_url_admin_info(client):
assert client.get(url_for('admin.url_admin_info')).status_code == 200
from celery.contrib import pytest
from database import app, run_run_with_debug, port
import covid19.blueprints.application.application_views
from flask import render_template, redirect, url_for, flash, Blueprint
from celery import states
from celery.utils.log import get_task_logger
import conftest
import src.covid19.blueprints.who.who_views
from celery.contrib import pytest
@pytest.mark.usefixtures('live_server')
class TestLiveServer:
def test_url_admin_tasks(client):
assert client.get(url_for('who.url_who_tasks')).status_code == 200
def test_url_admin_info(client):
assert client.get(url_for('who.url_who_info')).status_code == 200
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment