Mercurial > hg > MakeItSo
changeset 257:28d76b139fdd
add test for included templates
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Sat, 27 May 2017 14:22:41 -0700 |
parents | f10f5beb8ad1 |
children | e21f013586d0 |
files | tests/test_included.py |
diffstat | 1 files changed, 14 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/test_included.py Sat May 27 14:22:41 2017 -0700 @@ -0,0 +1,14 @@ +""" +tests for templates included in the package +""" + +included_templates = set(['python-package']) + +from makeitso.makeitso import get_entry_points + +def test_included_template(): + """ensure we are packaging included template correctly""" + + # ensure template is present in entry points + entry_points = get_entry_points() + assert included_templates.issubset(entry_points)