Changeset b138a9b in github for tests/html_to_text.php


Ignore:
Timestamp:
Feb 15, 2012 8:28:58 AM (15 months ago)
Author:
alecpl <alec@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.8
Children:
63f23ff
Parents:
43c40f0
Message:
  • Add two small tests for html2text converter
File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/html_to_text.php

    r6084d78 rb138a9b  
    3333                'out'   => '&quot;', 
    3434            ), 
     35            3 => array( 
     36                'title' => 'HTML entity in STRONG tag', 
     37                'in'    => '<strong>&#347;</strong>', // ś 
     38                'out'   => 'Ś', // upper ś 
     39            ), 
     40            4 => array( 
     41                'title' => 'STRONG tag to upper-case conversion', 
     42                'in'    => '<strong>ś</strong>', 
     43                'out'   => 'Ś', 
     44            ), 
    3545        ); 
    3646 
Note: See TracChangeset for help on using the changeset viewer.