diff options
| author | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2008-08-24 17:54:51 +0000 |
|---|---|---|
| committer | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2008-08-24 17:54:51 +0000 |
| commit | fbf09ee11dc4a7bc03018cad3331d573798f4c94 (patch) | |
| tree | 9b3b4030acaa6e5fc6ee230aa245ab285eb7d084 | |
| parent | 1ab16c7302a137075800048c310d6880f63a4210 (diff) | |
Added a test to show that [8472] also fixed #8254.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8521 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | tests/regressiontests/m2m_through_regress/models.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/regressiontests/m2m_through_regress/models.py b/tests/regressiontests/m2m_through_regress/models.py index 3775c7e158..b4135032a9 100644 --- a/tests/regressiontests/m2m_through_regress/models.py +++ b/tests/regressiontests/m2m_through_regress/models.py @@ -172,4 +172,8 @@ doing a join. >>> rock.members.filter(membership__price=50) [<Person: Jim>] +## Regression test for #8254 +>>> bob.group_set.filter(membership__price=50) +[<Group: Roll>] + """} |
