diff options
author | Remko Tronçon <git@el-tramo.be> | 2010-05-08 17:48:49 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2010-05-08 17:48:49 (GMT) |
commit | 5d45fe065778b1564618a623cca19d12621b72ca (patch) | |
tree | 572b5277d81018046b32286ccb425b88973ce7f4 /SwifTools/UnitTest | |
parent | 73ad73d896664a75e30063a6b96ed18a3b856786 (diff) | |
download | swift-5d45fe065778b1564618a623cca19d12621b72ca.zip swift-5d45fe065778b1564618a623cca19d12621b72ca.tar.bz2 |
Fixed linkify bug.
Resolves: #326
Diffstat (limited to 'SwifTools/UnitTest')
-rw-r--r-- | SwifTools/UnitTest/LinkifyTest.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/SwifTools/UnitTest/LinkifyTest.cpp b/SwifTools/UnitTest/LinkifyTest.cpp index 7ca921e..332d167 100644 --- a/SwifTools/UnitTest/LinkifyTest.cpp +++ b/SwifTools/UnitTest/LinkifyTest.cpp @@ -23,6 +23,7 @@ class LinkifyTest : public CppUnit::TestFixture { CPPUNIT_TEST(testLinkify_Anchor); CPPUNIT_TEST(testLinkify_Plus); CPPUNIT_TEST(testLinkify_Tilde); + CPPUNIT_TEST(testLinkify_Authentication); CPPUNIT_TEST_SUITE_END(); public: @@ -106,6 +107,14 @@ class LinkifyTest : public CppUnit::TestFixture { String("<a href=\"http://foo.com/~kev/\">http://foo.com/~kev/</a>"), result); } + + void testLinkify_Authentication() { + String result = Linkify::linkify("http://bob:bla@swift.im/foo/bar"); + + CPPUNIT_ASSERT_EQUAL( + String("<a href=\"http://bob:bla@swift.im/foo/bar\">http://bob:bla@swift.im/foo/bar</a>"), + result); + } }; CPPUNIT_TEST_SUITE_REGISTRATION(LinkifyTest); |