#!/usr/bin/perl use warnings; use strict; use Test::More tests => 13; BEGIN { use_ok("IkiWiki::Plugin::inline"); } # Test the absolute_urls function, used to fix up relative urls for rss # feeds. sub test { my $input=shift; my $baseurl=shift; my $expected=shift; $expected=~s/URL/$baseurl/g; is(IkiWiki::absolute_urls($input, $baseurl), $expected); # try it with single quoting -- it's ok if the result comes back # double or single-quoted $input=~s/"/'/g; my $expected_alt=$expected; $expected_alt=~s/"/'/g; my $ret=IkiWiki::absolute_urls($input, $baseurl); ok(($ret eq $expected) || ($ret eq $expected_alt), "$ret vs $expected"); } sub unchanged { test($_[0], $_[1], $_[0]); } my $url="http://example.com/blog/foo/"; unchanged("foo", $url); unchanged('', $url, ); test('', $url, ''); test('', $url, ''); test('', $url, ''); test('', $url, ''); # off until bug #603736 is fixed #test('