Adium

Changeset 24111

Show
Ignore:
Timestamp:
06/30/2008 01:11:53 PM (6 months ago)
Author:
sholt
Message:

Unit test for autolinking error for URIs enclosed in parentheses with spacesfound by Catfish_Man.
ex:

  • example.com and (example.com) link as expected.
  • ( example.com ) does not link properly.
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Frameworks/AutoHyperlinks Framework/UnitTests/HyperlinkContextTest.m

    r23863 r24111  
    201201        [self testLaxContext:@"<><><><><<<<><><><><%@><><><><><><<<><><><><><>" withURI:@"example.com"]; 
    202202        [self testLaxContext:@"l<><><><><<<<><><><><%@><><><><><><<<><><><><><>" withURI:@"http://example.com/foo_(bar)"]; 
    203  
     203         
     204        [self testLaxContext:@"( %@ )" withURI:@"example.com"]; 
     205        [self testLaxContext:@"( %@ )" withURI:@"http://example.com"]; 
    204206} 
    205207@end