src/main/java/com/atlassian/uwc/converters/dokuwiki/ExternalInternalLinksConverterTest.java [33:42]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public void testConvertRemoveMoreArgs() {
		String input, expected, actual;
		input = "[[http://foo-bar/doku.php?id=some:ns:tada&s[]=media&s[]=service|{{:some:image:image.png}}]]\n" +
				"[[http://foo-bar/doku.php?s[]=media&id=some:ns:tada]]\n";
		expected = "[[some:ns:tada|{{:some:image:image.png}}]]\n" +
				"[[some:ns:tada]]\n";
		actual = tester.convertExternalInternalLinks(input);
		assertNotNull(actual);
		assertEquals(expected, actual);
	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/atlassian/uwc/converters/mediawiki/ExternalInternalLinksConverterTest.java [88:97]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public void testConvertExternal_ImageNoSyntax() {
		String input, expected, actual;
		input = "https://mw.wiki.org/index.php/Image:Some_1_file.png\n" + 
				"";
		expected = "[^Some_1_file.png]\n" +
				"";
		actual = tester.convertExternalInternalLinks(input);
		assertNotNull(actual);
		assertEquals(expected, actual);
	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



