├── .coveragerc ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── COPYING ├── README.md ├── aloe_django ├── __init__.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── harvest.py ├── runner.py └── steps │ ├── __init__.py │ ├── mail.py │ └── models.py ├── docs ├── Makefile ├── conf.py ├── harvest.rst ├── index.rst ├── porting.rst ├── steps.rst └── using.rst ├── pylintrc ├── requirements.txt ├── setup.cfg ├── setup.py ├── test_requirements.txt ├── tests ├── __init__.py ├── integration │ ├── __init__.py │ ├── django │ │ ├── alfaces │ │ │ ├── __init__.py │ │ │ ├── donothing │ │ │ │ ├── __init__.py │ │ │ │ ├── features │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── dumb-page.feature │ │ │ │ │ └── simple_steps.py │ │ │ │ ├── templates │ │ │ │ │ └── index.html │ │ │ │ └── views.py │ │ │ ├── foobar │ │ │ │ ├── __init__.py │ │ │ │ └── features │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── deeper │ │ │ │ │ └── deeper │ │ │ │ │ │ └── leaf.feature │ │ │ │ │ ├── foobar.feature │ │ │ │ │ └── foobar_steps.py │ │ │ ├── manage.py │ │ │ ├── settings.py │ │ │ └── urls.py │ │ ├── bamboo │ │ │ ├── __init__.py │ │ │ ├── leaves │ │ │ │ ├── __init__.py │ │ │ │ └── features │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── content.feature │ │ │ │ │ ├── count.feature │ │ │ │ │ ├── mock-failure.feature │ │ │ │ │ └── steps.py │ │ │ ├── manage.py │ │ │ ├── settings.py │ │ │ └── urls.py │ │ ├── dill │ │ │ ├── __init__.py │ │ │ ├── leaves │ │ │ │ ├── __init__.py │ │ │ │ ├── features │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── create.feature │ │ │ │ │ ├── existence.feature │ │ │ │ │ ├── steps.py │ │ │ │ │ └── update.feature │ │ │ │ ├── models.py │ │ │ │ └── views.py │ │ │ ├── manage.py │ │ │ ├── settings.py │ │ │ └── urls.py │ │ ├── kale │ │ │ ├── __init__.py │ │ │ ├── donothing │ │ │ │ ├── __init__.py │ │ │ │ ├── features │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── steps.py │ │ │ │ │ └── tags.feature │ │ │ │ ├── models.py │ │ │ │ ├── templates │ │ │ │ │ └── index.html │ │ │ │ ├── tests.py │ │ │ │ └── views.py │ │ │ ├── manage.py │ │ │ ├── settings.py │ │ │ └── urls.py │ │ └── lychee │ │ │ ├── __init__.py │ │ │ ├── hello.feature │ │ │ └── steps.py │ ├── test_harvest.py │ ├── test_mail_steps.py │ ├── test_model_steps.py │ └── test_stock_app.py ├── unit │ └── __init__.py └── util.py └── tools └── check_installs /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/README.md -------------------------------------------------------------------------------- /aloe_django/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/aloe_django/__init__.py -------------------------------------------------------------------------------- /aloe_django/management/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /aloe_django/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /aloe_django/management/commands/harvest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/aloe_django/management/commands/harvest.py -------------------------------------------------------------------------------- /aloe_django/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/aloe_django/runner.py -------------------------------------------------------------------------------- /aloe_django/steps/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Step definitions for use with Django. 3 | """ 4 | -------------------------------------------------------------------------------- /aloe_django/steps/mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/aloe_django/steps/mail.py -------------------------------------------------------------------------------- /aloe_django/steps/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/aloe_django/steps/models.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/harvest.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/docs/harvest.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/porting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/docs/porting.rst -------------------------------------------------------------------------------- /docs/steps.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/docs/steps.rst -------------------------------------------------------------------------------- /docs/using.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/docs/using.rst -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/pylintrc -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [pycodestyle] 2 | exclude=.eggs,.ropeproject 3 | ignore=E402,E722,W503 4 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/setup.py -------------------------------------------------------------------------------- /test_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/test_requirements.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /tests/integration/django/alfaces/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/django/alfaces/donothing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/django/alfaces/donothing/features/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/django/alfaces/donothing/features/dumb-page.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/tests/integration/django/alfaces/donothing/features/dumb-page.feature -------------------------------------------------------------------------------- /tests/integration/django/alfaces/donothing/features/simple_steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/tests/integration/django/alfaces/donothing/features/simple_steps.py -------------------------------------------------------------------------------- /tests/integration/django/alfaces/donothing/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/tests/integration/django/alfaces/donothing/templates/index.html -------------------------------------------------------------------------------- /tests/integration/django/alfaces/donothing/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/tests/integration/django/alfaces/donothing/views.py -------------------------------------------------------------------------------- /tests/integration/django/alfaces/foobar/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/django/alfaces/foobar/features/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/django/alfaces/foobar/features/deeper/deeper/leaf.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/tests/integration/django/alfaces/foobar/features/deeper/deeper/leaf.feature -------------------------------------------------------------------------------- /tests/integration/django/alfaces/foobar/features/foobar.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/tests/integration/django/alfaces/foobar/features/foobar.feature -------------------------------------------------------------------------------- /tests/integration/django/alfaces/foobar/features/foobar_steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/tests/integration/django/alfaces/foobar/features/foobar_steps.py -------------------------------------------------------------------------------- /tests/integration/django/alfaces/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/tests/integration/django/alfaces/manage.py -------------------------------------------------------------------------------- /tests/integration/django/alfaces/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/tests/integration/django/alfaces/settings.py -------------------------------------------------------------------------------- /tests/integration/django/alfaces/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/tests/integration/django/alfaces/urls.py -------------------------------------------------------------------------------- /tests/integration/django/bamboo/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /tests/integration/django/bamboo/leaves/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /tests/integration/django/bamboo/leaves/features/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /tests/integration/django/bamboo/leaves/features/content.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/tests/integration/django/bamboo/leaves/features/content.feature -------------------------------------------------------------------------------- /tests/integration/django/bamboo/leaves/features/count.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/tests/integration/django/bamboo/leaves/features/count.feature -------------------------------------------------------------------------------- /tests/integration/django/bamboo/leaves/features/mock-failure.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/tests/integration/django/bamboo/leaves/features/mock-failure.feature -------------------------------------------------------------------------------- /tests/integration/django/bamboo/leaves/features/steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/tests/integration/django/bamboo/leaves/features/steps.py -------------------------------------------------------------------------------- /tests/integration/django/bamboo/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/tests/integration/django/bamboo/manage.py -------------------------------------------------------------------------------- /tests/integration/django/bamboo/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/tests/integration/django/bamboo/settings.py -------------------------------------------------------------------------------- /tests/integration/django/bamboo/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/tests/integration/django/bamboo/urls.py -------------------------------------------------------------------------------- /tests/integration/django/dill/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /tests/integration/django/dill/leaves/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /tests/integration/django/dill/leaves/features/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /tests/integration/django/dill/leaves/features/create.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/tests/integration/django/dill/leaves/features/create.feature -------------------------------------------------------------------------------- /tests/integration/django/dill/leaves/features/existence.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/tests/integration/django/dill/leaves/features/existence.feature -------------------------------------------------------------------------------- /tests/integration/django/dill/leaves/features/steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/tests/integration/django/dill/leaves/features/steps.py -------------------------------------------------------------------------------- /tests/integration/django/dill/leaves/features/update.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/tests/integration/django/dill/leaves/features/update.feature -------------------------------------------------------------------------------- /tests/integration/django/dill/leaves/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/tests/integration/django/dill/leaves/models.py -------------------------------------------------------------------------------- /tests/integration/django/dill/leaves/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/tests/integration/django/dill/leaves/views.py -------------------------------------------------------------------------------- /tests/integration/django/dill/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/tests/integration/django/dill/manage.py -------------------------------------------------------------------------------- /tests/integration/django/dill/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/tests/integration/django/dill/settings.py -------------------------------------------------------------------------------- /tests/integration/django/dill/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/tests/integration/django/dill/urls.py -------------------------------------------------------------------------------- /tests/integration/django/kale/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/django/kale/donothing/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /tests/integration/django/kale/donothing/features/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /tests/integration/django/kale/donothing/features/steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/tests/integration/django/kale/donothing/features/steps.py -------------------------------------------------------------------------------- /tests/integration/django/kale/donothing/features/tags.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/tests/integration/django/kale/donothing/features/tags.feature -------------------------------------------------------------------------------- /tests/integration/django/kale/donothing/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/django/kale/donothing/templates/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/django/kale/donothing/tests.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/django/kale/donothing/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/tests/integration/django/kale/donothing/views.py -------------------------------------------------------------------------------- /tests/integration/django/kale/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/tests/integration/django/kale/manage.py -------------------------------------------------------------------------------- /tests/integration/django/kale/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/tests/integration/django/kale/settings.py -------------------------------------------------------------------------------- /tests/integration/django/kale/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/tests/integration/django/kale/urls.py -------------------------------------------------------------------------------- /tests/integration/django/lychee/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/tests/integration/django/lychee/__init__.py -------------------------------------------------------------------------------- /tests/integration/django/lychee/hello.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/tests/integration/django/lychee/hello.feature -------------------------------------------------------------------------------- /tests/integration/django/lychee/steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/tests/integration/django/lychee/steps.py -------------------------------------------------------------------------------- /tests/integration/test_harvest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/tests/integration/test_harvest.py -------------------------------------------------------------------------------- /tests/integration/test_mail_steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/tests/integration/test_mail_steps.py -------------------------------------------------------------------------------- /tests/integration/test_model_steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/tests/integration/test_model_steps.py -------------------------------------------------------------------------------- /tests/integration/test_stock_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/tests/integration/test_stock_app.py -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /tests/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/tests/util.py -------------------------------------------------------------------------------- /tools/check_installs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloetesting/aloe_django/HEAD/tools/check_installs --------------------------------------------------------------------------------