Add an example that reproduces a pending issue

This should help make testing easier and should server as a reference
for something we'll want to write a test for in future.
fix_request_path_info
Hugo Osvaldo Barrera 2015-10-23 22:43:13 -03:00
parent fb32b97b37
commit 17583d15b3
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.9b1 on 2015-10-24 01:42
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('pexp', '0001_initial'),
]
operations = [
migrations.AddField(
model_name='modelc',
name='field4',
field=models.ManyToManyField(related_name='related_c', to='pexp.ModelB'),
),
]

View File

@ -19,6 +19,7 @@ class ModelB(ModelA):
field2 = models.CharField(max_length=10) field2 = models.CharField(max_length=10)
class ModelC(ModelB): class ModelC(ModelB):
field3 = models.CharField(max_length=10) field3 = models.CharField(max_length=10)
field4 = models.ManyToManyField(ModelB, related_name='related_c')
class nModelA(models.Model): class nModelA(models.Model):
field1 = models.CharField(max_length=10) field1 = models.CharField(max_length=10)