xref: /dokuwiki/_test/tests/inc/common_stripsourcemaps.test.php (revision f449b8c9764a91a15cbda1130ef0cd053c48f8e8)
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}