mirror of https://github.com/sgoudham/Enso-Bot.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.1 KiB
Python
40 lines
1.1 KiB
Python
from django.db import models
|
|
|
|
from south.db import db
|
|
from south.tests import unittest, skipUnless
|
|
|
|
|
|
class FirebirdTests(unittest.TestCase):
|
|
|
|
"""
|
|
Tests firebird related issues
|
|
"""
|
|
|
|
def setUp(self):
|
|
print('=' * 80)
|
|
print('Begin Firebird test')
|
|
|
|
def tearDown(self):
|
|
print('End Firebird test')
|
|
print('=' * 80)
|
|
|
|
@skipUnless(db.backend_name == "firebird", "Firebird-only test")
|
|
def test_firebird_double_index_creation_1317(self):
|
|
"""
|
|
Tests foreign key creation, especially uppercase (see #61)
|
|
"""
|
|
Test = db.mock_model(model_name='Test',
|
|
db_table='test5a',
|
|
db_tablespace='',
|
|
pk_field_name='ID',
|
|
pk_field_type=models.AutoField,
|
|
pk_field_args=[]
|
|
)
|
|
db.create_table("test5a", [('ID', models.AutoField(verbose_name='ID', primary_key=True, auto_created=True))])
|
|
db.create_table("test5b", [
|
|
('id', models.AutoField(verbose_name='ID', primary_key=True, auto_created=True)),
|
|
('UNIQUE', models.ForeignKey(Test)),
|
|
])
|
|
db.execute_deferred_sql()
|
|
|