Commit 0ff6bbf1 authored by Jannis Leidel's avatar Jannis Leidel
Browse files

Added staticfiles test case for filenames with medial capitals.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@15878 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 16ad1d95
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
This file is named with camelCase.
 No newline at end of file
+6 −0
Original line number Diff line number Diff line
@@ -165,6 +165,12 @@ class TestDefaults(object):
        """
        self.assertFileContains(u'test/fişier.txt', u'fişier in the app dir')

    def test_camelcase_filenames(self):
        """
        Can find a file with capital letters.
        """
        self.assertFileContains(u'test/camelCase.txt', u'camelCase')


class TestFindStatic(BuildStaticTestCase, TestDefaults):
    """