diff options
author | Remko Tronçon <git@el-tramo.be> | 2009-11-16 20:59:49 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2009-11-16 20:59:49 (GMT) |
commit | f9f84b3d960bfe92103235edef607d8db8d0b6b0 (patch) | |
tree | 6f2466f7c21c03a8abafcde53d1f2132159c042a /SwifTools | |
parent | 4d182bfb1621687a818f0a80fc77a392f381c5da (diff) | |
download | swift-f9f84b3d960bfe92103235edef607d8db8d0b6b0.zip swift-f9f84b3d960bfe92103235edef607d8db8d0b6b0.tar.bz2 |
Add another linkifier test.
Diffstat (limited to 'SwifTools')
-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 a249d48..b55067c 100644 --- a/SwifTools/UnitTest/LinkifyTest.cpp +++ b/SwifTools/UnitTest/LinkifyTest.cpp @@ -13,6 +13,7 @@ class LinkifyTest : public CppUnit::TestFixture { CPPUNIT_TEST(testLinkify_URLSurroundedByWhitespace); CPPUNIT_TEST(testLinkify_MultipleURLs); CPPUNIT_TEST(testLinkify_CamelCase); + CPPUNIT_TEST(testLinkify_HierarchicalResource); CPPUNIT_TEST_SUITE_END(); public: @@ -64,6 +65,14 @@ class LinkifyTest : public CppUnit::TestFixture { String("<a href=\"http://fOo.cOm/bAz\">http://fOo.cOm/bAz</a>"), result); } + + void testLinkify_HierarchicalResource() { + String result = Linkify::linkify("http://foo.com/bar/baz/"); + + CPPUNIT_ASSERT_EQUAL( + String("<a href=\"http://foo.com/bar/baz/\">http://foo.com/bar/baz/</a>"), + result); + } }; CPPUNIT_TEST_SUITE_REGISTRATION(LinkifyTest); |