wiki.pl: Port some fixes from upstream
[Orgmuse.git] / t / questionmark.t
blob89eeeffc15cb9a47a492cf4215ad33fc48d0ce2f
1 # Copyright (C) 2010  Alex Schroeder <alex@gnu.org>
3 # This program is free software: you can redistribute it and/or modify it under
4 # the terms of the GNU General Public License as published by the Free Software
5 # Foundation, either version 3 of the License, or (at your option) any later
6 # version.
8 # This program is distributed in the hope that it will be useful, but WITHOUT
9 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
10 # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12 # You should have received a copy of the GNU General Public License along with
13 # this program. If not, see <http://www.gnu.org/licenses/>.
15 require 't/test.pl';
16 package OddMuse;
17 use Test::More tests => 5;
19 clear_pages();
21 xpath_test(update_page('Start', '[[Hello?]]'),
22            '//a[@class="edit"][@title="Click to edit this page"][@href="http://localhost/wiki.pl?action=edit;id=Hello%3f"][text()="?"]');
23 xpath_test(update_page('Hello?', 'Test'),
24            '//h1/a[text()="Hello?"]',
25            '//div[@class="content browse"]/p[text()="Test"]');
26 xpath_test(get_page('Start'),
27            '//a[@class="local"][@href="http://localhost/wiki.pl/Hello%3f"][text()="Hello?"]');
28 xpath_test(update_page('Start', '[[image:Hello?]]'),
29            '//img[@class="upload"][@alt="Hello?"][@src="http://localhost/wiki.pl/download/Hello%3f"]');