You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1008 B
38 lines
1008 B
#!/usr/bin/env python |
|
# -*- coding: utf-8 -*- |
|
|
|
"""Tests for `s2rename` package.""" |
|
|
|
import pytest |
|
|
|
from click.testing import CliRunner |
|
|
|
from s2rename import s2rename |
|
from s2rename import cli |
|
|
|
|
|
@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 |
|
|
|
|
|
def test_command_line_interface(): |
|
"""Test the CLI.""" |
|
runner = CliRunner() |
|
result = runner.invoke(cli.main) |
|
assert result.exit_code == 0 |
|
assert 's2rename.cli.main' in result.output |
|
help_result = runner.invoke(cli.main, ['--help']) |
|
assert help_result.exit_code == 0 |
|
assert '--help Show this message and exit.' in help_result.output
|
|
|