1
0
mirror of https://github.com/ansible/mazer.git synced 2026-02-05 12:45:17 +01:00
Files
mazer/tests/test_ansible_galaxy_cli.py
Adrian Likins 0502f70d3e bootstrap package setup via cookiecutter (#6)
bootstrap package setup via cookiecutter

Based on template from https://github.com/audreyr/cookiecutter-pypackage

Changes from default template:
* unpin dev requirements for now
* rm 'watchdog' dev requirement and remove use
from Makefile
* sort requirements_dev, unpin and note bumpversion
* Use 'Apache-2.0' spdx.org style licence identifier to match ansible/galaxy/setup.py.
* rm docs from sdist
* mv rst docs to docs/rst
* add .pytest_cache to gitignore
2018-04-19 12:33:14 -04:00

24 lines
559 B
Python

#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Tests for `ansible_galaxy_cli` package."""
import pytest
@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