src/main/java/com/atlassian/uwc/converters/mindtouch/StyleConverterTest.java [26:34]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public void testConvert_Colorrgb() {
		String input = "<content>" +
				"<p><span style=\"color: rgb(51, 102, 255);\">Color Blue</span></p>" + 
				"</content>";
		String expected = "{color:#3366ff}Color Blue{color}";
		String actual = parse(input);
		assertNotNull(actual);
		assertEquals(expected, actual);
	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/atlassian/uwc/converters/mindtouch/LinkParserTest.java [37:45]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public void testConvert_External() {
		String input = "<content>" +
				"<a class=\" external\" title=\"http://google.com/\" rel=\"external nofollow\" href=\"http://google.com\" target=\"_blank\">http://google.com</a>\n" + 
				"</content>";
		String expected = "[http://google.com]\n";
		String actual = parse(input);
		assertNotNull(actual);
		assertEquals(expected, actual);
	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



