├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ └── python-tests.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CONTRIBUTING.md ├── Makefile ├── README.md ├── cbv ├── __init__.py ├── fixtures │ ├── 1.10.json │ ├── 1.11.json │ ├── 1.3.json │ ├── 1.4.json │ ├── 1.5.json │ ├── 1.6.json │ ├── 1.7.json │ ├── 1.8.json │ ├── 1.9.json │ ├── 2.0.json │ ├── 2.1.json │ ├── 2.2.json │ ├── 3.0.json │ ├── 3.1.json │ ├── 3.2.json │ ├── 4.0.json │ ├── 4.1.json │ ├── 4.2.json │ ├── 5.0.json │ ├── 5.1.json │ └── 5.2.json ├── importer │ ├── __init__.py │ ├── dataclasses.py │ ├── importers.py │ └── storages.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── cbv_dumpversion.py │ │ ├── fetch_docs_urls.py │ │ ├── load_all_django_versions.py │ │ └── populate_cbv.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20161106_0952.py │ ├── 0003_remove_function_model.py │ ├── 0004_larger_attribute_values.py │ ├── 0005_delete_moduleattribute.py │ ├── 0006_simplify_unique_constraint.py │ ├── 0007_remove_project_fk.py │ ├── 0008_delete_project.py │ ├── 0009_move_unique_constraint.py │ ├── 0010_auto_20230104_0019.py │ └── __init__.py ├── models.py ├── queries.py ├── shortcut_urls.py ├── static │ ├── bootstrap-dropdowns.js │ ├── bootstrap-responsive.css │ ├── bootstrap-tooltip.js │ ├── bootstrap.css │ ├── ccbv.js │ ├── favicon │ │ ├── favicon.ico │ │ └── favicon.svg │ ├── jquery-1.7.1.min.js │ ├── manni.css │ ├── modernizr-2.5.3.min.js │ ├── permalinks.js │ └── style.css ├── templates │ ├── 404.html │ ├── 500.html │ ├── base.html │ ├── cbv │ │ ├── _klass_list.html │ │ ├── includes │ │ │ └── nav.html │ │ ├── klass_detail.html │ │ ├── module_detail.html │ │ └── version_detail.html │ ├── home.html │ └── sitemap.xml ├── templatetags │ ├── __init__.py │ └── cbv_tags.py ├── urls.py └── views.py ├── core ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py ├── license.md ├── manage.py ├── mypy-ratchet.json ├── pyproject.toml ├── requirements.dev.in ├── requirements.dev.txt ├── requirements.prod.in ├── requirements.prod.txt └── tests ├── __init__.py ├── _page_snapshots ├── fuzzy-klass-detail-old.html ├── fuzzy-klass-detail.html ├── fuzzy-module-detail.html ├── homepage.html ├── klass-detail-old.html ├── klass-detail.html ├── module-detail.html └── version-detail.html ├── factories.py ├── files ├── empty-sitemap.xml └── populated-sitemap.xml ├── test_models.py ├── test_page_snapshots.py └── test_views.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/python-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/.github/workflows/python-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/README.md -------------------------------------------------------------------------------- /cbv/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cbv/fixtures/1.10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/fixtures/1.10.json -------------------------------------------------------------------------------- /cbv/fixtures/1.11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/fixtures/1.11.json -------------------------------------------------------------------------------- /cbv/fixtures/1.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/fixtures/1.3.json -------------------------------------------------------------------------------- /cbv/fixtures/1.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/fixtures/1.4.json -------------------------------------------------------------------------------- /cbv/fixtures/1.5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/fixtures/1.5.json -------------------------------------------------------------------------------- /cbv/fixtures/1.6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/fixtures/1.6.json -------------------------------------------------------------------------------- /cbv/fixtures/1.7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/fixtures/1.7.json -------------------------------------------------------------------------------- /cbv/fixtures/1.8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/fixtures/1.8.json -------------------------------------------------------------------------------- /cbv/fixtures/1.9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/fixtures/1.9.json -------------------------------------------------------------------------------- /cbv/fixtures/2.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/fixtures/2.0.json -------------------------------------------------------------------------------- /cbv/fixtures/2.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/fixtures/2.1.json -------------------------------------------------------------------------------- /cbv/fixtures/2.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/fixtures/2.2.json -------------------------------------------------------------------------------- /cbv/fixtures/3.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/fixtures/3.0.json -------------------------------------------------------------------------------- /cbv/fixtures/3.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/fixtures/3.1.json -------------------------------------------------------------------------------- /cbv/fixtures/3.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/fixtures/3.2.json -------------------------------------------------------------------------------- /cbv/fixtures/4.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/fixtures/4.0.json -------------------------------------------------------------------------------- /cbv/fixtures/4.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/fixtures/4.1.json -------------------------------------------------------------------------------- /cbv/fixtures/4.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/fixtures/4.2.json -------------------------------------------------------------------------------- /cbv/fixtures/5.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/fixtures/5.0.json -------------------------------------------------------------------------------- /cbv/fixtures/5.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/fixtures/5.1.json -------------------------------------------------------------------------------- /cbv/fixtures/5.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/fixtures/5.2.json -------------------------------------------------------------------------------- /cbv/importer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cbv/importer/dataclasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/importer/dataclasses.py -------------------------------------------------------------------------------- /cbv/importer/importers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/importer/importers.py -------------------------------------------------------------------------------- /cbv/importer/storages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/importer/storages.py -------------------------------------------------------------------------------- /cbv/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cbv/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cbv/management/commands/cbv_dumpversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/management/commands/cbv_dumpversion.py -------------------------------------------------------------------------------- /cbv/management/commands/fetch_docs_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/management/commands/fetch_docs_urls.py -------------------------------------------------------------------------------- /cbv/management/commands/load_all_django_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/management/commands/load_all_django_versions.py -------------------------------------------------------------------------------- /cbv/management/commands/populate_cbv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/management/commands/populate_cbv.py -------------------------------------------------------------------------------- /cbv/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/migrations/0001_initial.py -------------------------------------------------------------------------------- /cbv/migrations/0002_auto_20161106_0952.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/migrations/0002_auto_20161106_0952.py -------------------------------------------------------------------------------- /cbv/migrations/0003_remove_function_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/migrations/0003_remove_function_model.py -------------------------------------------------------------------------------- /cbv/migrations/0004_larger_attribute_values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/migrations/0004_larger_attribute_values.py -------------------------------------------------------------------------------- /cbv/migrations/0005_delete_moduleattribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/migrations/0005_delete_moduleattribute.py -------------------------------------------------------------------------------- /cbv/migrations/0006_simplify_unique_constraint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/migrations/0006_simplify_unique_constraint.py -------------------------------------------------------------------------------- /cbv/migrations/0007_remove_project_fk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/migrations/0007_remove_project_fk.py -------------------------------------------------------------------------------- /cbv/migrations/0008_delete_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/migrations/0008_delete_project.py -------------------------------------------------------------------------------- /cbv/migrations/0009_move_unique_constraint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/migrations/0009_move_unique_constraint.py -------------------------------------------------------------------------------- /cbv/migrations/0010_auto_20230104_0019.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/migrations/0010_auto_20230104_0019.py -------------------------------------------------------------------------------- /cbv/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cbv/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/models.py -------------------------------------------------------------------------------- /cbv/queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/queries.py -------------------------------------------------------------------------------- /cbv/shortcut_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/shortcut_urls.py -------------------------------------------------------------------------------- /cbv/static/bootstrap-dropdowns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/static/bootstrap-dropdowns.js -------------------------------------------------------------------------------- /cbv/static/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/static/bootstrap-responsive.css -------------------------------------------------------------------------------- /cbv/static/bootstrap-tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/static/bootstrap-tooltip.js -------------------------------------------------------------------------------- /cbv/static/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/static/bootstrap.css -------------------------------------------------------------------------------- /cbv/static/ccbv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/static/ccbv.js -------------------------------------------------------------------------------- /cbv/static/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/static/favicon/favicon.ico -------------------------------------------------------------------------------- /cbv/static/favicon/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/static/favicon/favicon.svg -------------------------------------------------------------------------------- /cbv/static/jquery-1.7.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/static/jquery-1.7.1.min.js -------------------------------------------------------------------------------- /cbv/static/manni.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/static/manni.css -------------------------------------------------------------------------------- /cbv/static/modernizr-2.5.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/static/modernizr-2.5.3.min.js -------------------------------------------------------------------------------- /cbv/static/permalinks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/static/permalinks.js -------------------------------------------------------------------------------- /cbv/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/static/style.css -------------------------------------------------------------------------------- /cbv/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/templates/404.html -------------------------------------------------------------------------------- /cbv/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/templates/500.html -------------------------------------------------------------------------------- /cbv/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/templates/base.html -------------------------------------------------------------------------------- /cbv/templates/cbv/_klass_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/templates/cbv/_klass_list.html -------------------------------------------------------------------------------- /cbv/templates/cbv/includes/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/templates/cbv/includes/nav.html -------------------------------------------------------------------------------- /cbv/templates/cbv/klass_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/templates/cbv/klass_detail.html -------------------------------------------------------------------------------- /cbv/templates/cbv/module_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/templates/cbv/module_detail.html -------------------------------------------------------------------------------- /cbv/templates/cbv/version_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/templates/cbv/version_detail.html -------------------------------------------------------------------------------- /cbv/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/templates/home.html -------------------------------------------------------------------------------- /cbv/templates/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/templates/sitemap.xml -------------------------------------------------------------------------------- /cbv/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cbv/templatetags/cbv_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/templatetags/cbv_tags.py -------------------------------------------------------------------------------- /cbv/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/urls.py -------------------------------------------------------------------------------- /cbv/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/cbv/views.py -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/core/settings.py -------------------------------------------------------------------------------- /core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/core/urls.py -------------------------------------------------------------------------------- /core/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/core/wsgi.py -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/license.md -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/manage.py -------------------------------------------------------------------------------- /mypy-ratchet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/mypy-ratchet.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.dev.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/requirements.dev.in -------------------------------------------------------------------------------- /requirements.dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/requirements.dev.txt -------------------------------------------------------------------------------- /requirements.prod.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/requirements.prod.in -------------------------------------------------------------------------------- /requirements.prod.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/requirements.prod.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_page_snapshots/fuzzy-klass-detail-old.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/tests/_page_snapshots/fuzzy-klass-detail-old.html -------------------------------------------------------------------------------- /tests/_page_snapshots/fuzzy-klass-detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/tests/_page_snapshots/fuzzy-klass-detail.html -------------------------------------------------------------------------------- /tests/_page_snapshots/fuzzy-module-detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/tests/_page_snapshots/fuzzy-module-detail.html -------------------------------------------------------------------------------- /tests/_page_snapshots/homepage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/tests/_page_snapshots/homepage.html -------------------------------------------------------------------------------- /tests/_page_snapshots/klass-detail-old.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/tests/_page_snapshots/klass-detail-old.html -------------------------------------------------------------------------------- /tests/_page_snapshots/klass-detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/tests/_page_snapshots/klass-detail.html -------------------------------------------------------------------------------- /tests/_page_snapshots/module-detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/tests/_page_snapshots/module-detail.html -------------------------------------------------------------------------------- /tests/_page_snapshots/version-detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/tests/_page_snapshots/version-detail.html -------------------------------------------------------------------------------- /tests/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/tests/factories.py -------------------------------------------------------------------------------- /tests/files/empty-sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/tests/files/empty-sitemap.xml -------------------------------------------------------------------------------- /tests/files/populated-sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/tests/files/populated-sitemap.xml -------------------------------------------------------------------------------- /tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/tests/test_models.py -------------------------------------------------------------------------------- /tests/test_page_snapshots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/tests/test_page_snapshots.py -------------------------------------------------------------------------------- /tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classy-python/ccbv/HEAD/tests/test_views.py --------------------------------------------------------------------------------