12345678910111213141516171819202122232425 |
- require 't/test.pl';
- package OddMuse;
- use Test::More tests => 3;
- test_page(get_page('HomePage'), 'Welcome!');
- xpath_test(get_page('action=edit id=HomePage'),
- '//textarea[@name="text"][not(text())]');
- test_page(get_page('Other'), 'This page does not exist');
|