xref: /dokuwiki/_test/tests/inc/common_stripsourcemaps.test.php (revision 123bc813fd93ab5d8dab3cc4a66a09e613a10aa2)
1<?php
2
3class common_stripsourcemaps_test extends DokuWikiTest {
4
5    function test_all() {
6
7        $text = <<<EOL
8//@ sourceMappingURL=/foo/bar/xxx.map
9//# sourceMappingURL=/foo/bar/xxx.map
10/*@ sourceMappingURL=/foo/bar/xxx.map */
11/*# sourceMappingURL=/foo/bar/xxx.map */
12bang
13EOL;
14
15        $expect = <<<EOL
16//
17//
18/**/
19/**/
20bang
21EOL;
22
23        stripsourcemaps($text);
24
25
26        $this->assertEquals($expect, $text);
27    }
28
29}