Commit 28da093a authored by Tim Graham's avatar Tim Graham
Browse files

Allowed test from refs #23612 to be run from a directory other than tests.

parent b62f7249
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -850,7 +850,13 @@ class TestLoadFixtureFromOtherAppDirectory(TestCase):
    #23612 -- fixtures path should be normalized to allow referencing relative
    paths on Windows.
    """
    fixtures = ['fixtures_regress/fixtures/absolute.json']
    current_dir = os.path.abspath(os.path.dirname(__file__))
    # relative_prefix is something like tests/fixtures_regress or
    # fixtures_regress depending on how runtests.py is invoked.
    # All path separators must be / in order to be a proper regression test on
    # Windows, so replace as appropriate.
    relative_prefix = current_dir.replace(os.getcwd(), '', 1)[1:].replace('\\', '/')
    fixtures = [relative_prefix + '/fixtures/absolute.json']

    def test_fixtures_loaded(self):
        count = Absolute.objects.count()