Show
Ignore:
Timestamp:
07/07/08 07:41:10 (5 months ago)
Author:
rob
Message:

Fixed vfs uri handling to properly decode fragments in windows path urls
* makeTabActive now attempts to match on normalized URLs
* added testcase for windows urls with fragments

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/tests/test_vfs.py

    r929 r1462  
    187187        self.assertEqual('c:/stuff/blah', uri.path) 
    188188        self.assertEqual('file', uri.scheme) 
     189        uri = vfs.get_reference('c:/stuff/blah#5') 
     190        self.assertEqual('c:/stuff/blah', str(uri.path)) 
     191        self.assertEqual('5', uri.fragment) 
     192        self.assertEqual('file', uri.scheme) 
    189193         
    190194    def test_windows_normalize(self):