Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/tests/contenttypes_tests/test_order_with_respect_to.py
blob: 5d7f99d48b00f7d3bc17f20a9bc24b8badc3c1e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from order_with_respect_to.tests import (
    OrderWithRespectToTests, OrderWithRespectToTests2,
)

from .models import Answer, Post, Question


class OrderWithRespectToGFKTests(OrderWithRespectToTests):
    Answer = Answer
    Question = Question

del OrderWithRespectToTests


class OrderWithRespectToGFKTests2(OrderWithRespectToTests2):
    Post = Post

del OrderWithRespectToTests2