Projet

Général

Profil

Paste
Télécharger (290 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / libraries / simplepie / tests / oldtests / absolutize / SPtests / bugs / pct_encoding_invalid_second_char.php @ 41cc1b08

1
<?php
2

    
3
class SimplePie_Absolutize_Test_Bug_Pct_Encoding_Invalid_Second_Char extends SimplePie_Absolutize_Test
4
{
5
        function data()
6
        {
7
                $this->data['base'] = 'http://a/b/c/d';
8
                $this->data['relative'] = 'f%0o';
9
        }
10
        
11
        function expected()
12
        {
13
                $this->expected = 'http://a/b/c/f%250o';
14
        }
15
}
16

    
17
?>