Initial commit

Created the basic project structure.
This commit is contained in:
2021-03-14 15:37:09 +00:00
committed by Sascha Bischoff
commit 17e6d7bb4e
30 changed files with 936 additions and 0 deletions

1
tests/__init__.py Normal file
View File

@@ -0,0 +1 @@
"""Unit test package for fuseiontranscode."""

View File

@@ -0,0 +1,24 @@
#!/usr/bin/env python
"""Tests for `fuseiontranscode` package."""
import pytest
from fuseiontranscode import fuseiontranscode
@pytest.fixture
def response():
"""Sample pytest fixture.
See more at: http://doc.pytest.org/en/latest/fixture.html
"""
# import requests
# return requests.get('https://github.com/audreyr/cookiecutter-pypackage')
def test_content(response):
"""Sample pytest test function with the pytest fixture as an argument."""
# from bs4 import BeautifulSoup
# assert 'GitHub' in BeautifulSoup(response.content).title.string