aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
authorVirtualTam <virtualtam+github@flibidi.net>2016-10-20 21:37:28 +0200
committerGitHub <noreply@github.com>2016-10-20 21:37:28 +0200
commit954dc2446caade6ccad3ffd1173ef139c1f36ad3 (patch)
treeed335a59a71a8561aef8952133e9904d8064125e /tests
parentfb6c8f770a07e38d5250ca4d6717445002e7bfb3 (diff)
parentfbc28ff1c892460e90e87a1be6dd3e28a4cd58b8 (diff)
downloadShaarli-954dc2446caade6ccad3ffd1173ef139c1f36ad3.tar.gz
Shaarli-954dc2446caade6ccad3ffd1173ef139c1f36ad3.tar.zst
Shaarli-954dc2446caade6ccad3ffd1173ef139c1f36ad3.zip
Merge pull request #665 from ArthurHoaro/fix/feed-hashtags
Fix hashtag links in Feeds
Diffstat (limited to 'tests')
-rw-r--r--tests/FeedBuilderTest.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/FeedBuilderTest.php b/tests/FeedBuilderTest.php
index aa57f44e..d7839402 100644
--- a/tests/FeedBuilderTest.php
+++ b/tests/FeedBuilderTest.php
@@ -249,5 +249,6 @@ class FeedBuilderTest extends PHPUnit_Framework_TestCase
249 $link = array_shift($data['links']); 249 $link = array_shift($data['links']);
250 $this->assertEquals('http://host.tld:8080/~user/shaarli/?WDWyig', $link['guid']); 250 $this->assertEquals('http://host.tld:8080/~user/shaarli/?WDWyig', $link['guid']);
251 $this->assertEquals('http://host.tld:8080/~user/shaarli/?WDWyig', $link['url']); 251 $this->assertEquals('http://host.tld:8080/~user/shaarli/?WDWyig', $link['url']);
252 $this->assertContains('http://host.tld:8080/~user/shaarli/?addtag=hashtag', $link['description']);
252 } 253 }
253} 254}