| Index: tests/patch_test.py
 | 
| diff --git a/tests/patch_test.py b/tests/patch_test.py
 | 
| index dd4b72efebf0c333113a9fb866100611f6682400..034915754eb5bf33b37b4ba88c94ff8fd0d2464e 100755
 | 
| --- a/tests/patch_test.py
 | 
| +++ b/tests/patch_test.py
 | 
| @@ -512,6 +512,15 @@ class PatchTest(unittest.TestCase):
 | 
|      self.assertEquals(
 | 
|          [('svn:executable', '*')],
 | 
|          patch.FilePatchDiff('natsort_test.py', diff, []).svn_properties)
 | 
| +    diff = (
 | 
| +        'diff --git a/natsort_test.py b/natsort_test.py\n'
 | 
| +        'new file mode 100644\n'
 | 
| +        '--- /dev/null\n'
 | 
| +        '+++ b/natsort_test.py\n'
 | 
| +        '@@ -0,0 +1,1 @@\n'
 | 
| +        '+#!/usr/bin/env python\n')
 | 
| +    self.assertEquals(
 | 
| +        [], patch.FilePatchDiff('natsort_test.py', diff, []).svn_properties)
 | 
|  
 | 
|  
 | 
|  if __name__ == '__main__':
 | 
| 
 |