2011-01-24 22:58:05 +08:00
|
|
|
from StringIO import StringIO
|
|
|
|
|
|
|
|
from django.core.management import call_command
|
2011-02-01 22:42:52 +08:00
|
|
|
from django.test import TestCase, skipUnlessDBFeature
|
2011-01-24 22:58:05 +08:00
|
|
|
|
2011-01-24 23:18:56 +08:00
|
|
|
|
2011-01-24 22:58:05 +08:00
|
|
|
class InspectDBTestCase(TestCase):
|
2011-02-01 22:42:52 +08:00
|
|
|
|
|
|
|
@skipUnlessDBFeature('can_introspect_foreign_keys')
|
2011-01-24 22:58:05 +08:00
|
|
|
def test_attribute_name_not_python_keyword(self):
|
|
|
|
out = StringIO()
|
|
|
|
call_command('inspectdb', stdout=out)
|
|
|
|
error_message = "inspectdb generated an attribute name which is a python keyword"
|
2011-01-24 23:18:56 +08:00
|
|
|
self.assertNotIn("from = models.ForeignKey(InspectdbPeople)", out.getvalue(), msg=error_message)
|
|
|
|
self.assertIn("from_field = models.ForeignKey(InspectdbPeople)", out.getvalue())
|
2011-01-24 22:58:05 +08:00
|
|
|
out.close()
|