From 83461f0ff1772f7d29936c11fa6ecf49c22ef1d8 Mon Sep 17 00:00:00 2001 From: Raphaël Barrois Date: Mon, 10 Jun 2013 01:19:36 +0200 Subject: Add django-based tests for DjangoModelFactory. --- tests/djapp/__init__.py | 0 tests/djapp/models.py | 36 ++++++++++++++++++++++++++++++++++++ tests/djapp/settings.py | 35 +++++++++++++++++++++++++++++++++++ 3 files changed, 71 insertions(+) create mode 100644 tests/djapp/__init__.py create mode 100644 tests/djapp/models.py create mode 100644 tests/djapp/settings.py (limited to 'tests/djapp') diff --git a/tests/djapp/__init__.py b/tests/djapp/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/djapp/models.py b/tests/djapp/models.py new file mode 100644 index 0000000..c107add --- /dev/null +++ b/tests/djapp/models.py @@ -0,0 +1,36 @@ +# -*- coding: utf-8 -*- +# Copyright (c) 2011-2013 Raphaël Barrois +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. + + +"""Helpers for testing django apps.""" + + +from django.db import models + +class StandardModel(models.Model): + foo = models.CharField(max_length=20) + + +class NonIntegerPk(models.Model): + foo = models.CharField(max_length=20, primary_key=True) + bar = models.CharField(max_length=20, blank=True) + + diff --git a/tests/djapp/settings.py b/tests/djapp/settings.py new file mode 100644 index 0000000..787d3f3 --- /dev/null +++ b/tests/djapp/settings.py @@ -0,0 +1,35 @@ +# -*- coding: utf-8 -*- +# Copyright (c) 2011-2013 Raphaël Barrois +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. +"""Settings for factory_boy/Django tests.""" + +DATABASES = { + 'default': { + 'ENGINE': 'django.db.backends.sqlite3', + }, +} + + +INSTALLED_APPS = [ + 'tests.djapp' +] + + +SECRET_KEY = 'testing.' -- cgit v1.2.3