├── .coveragerc ├── .gitignore ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── cfn_resource.py ├── example.py ├── pytest.ini ├── setup.py ├── test-requirements.txt ├── test_cfn_resource.py ├── tox.ini └── vcr_recordings ├── client_code_failure.yaml └── sends_put_request.yaml /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | omit = .tox/* 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryansb/cfn-wrapper-python/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryansb/cfn-wrapper-python/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryansb/cfn-wrapper-python/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryansb/cfn-wrapper-python/HEAD/README.rst -------------------------------------------------------------------------------- /cfn_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryansb/cfn-wrapper-python/HEAD/cfn_resource.py -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryansb/cfn-wrapper-python/HEAD/example.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryansb/cfn-wrapper-python/HEAD/pytest.ini -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryansb/cfn-wrapper-python/HEAD/setup.py -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- 1 | mock 2 | vcrpy 3 | pytest 4 | coverage>=4.2 5 | -------------------------------------------------------------------------------- /test_cfn_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryansb/cfn-wrapper-python/HEAD/test_cfn_resource.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryansb/cfn-wrapper-python/HEAD/tox.ini -------------------------------------------------------------------------------- /vcr_recordings/client_code_failure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryansb/cfn-wrapper-python/HEAD/vcr_recordings/client_code_failure.yaml -------------------------------------------------------------------------------- /vcr_recordings/sends_put_request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryansb/cfn-wrapper-python/HEAD/vcr_recordings/sends_put_request.yaml --------------------------------------------------------------------------------