Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: CDATA delimitier in test #400

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public async Task ShouldCreateRssFeed()
<link>http://localhost//blogPost/{blogPost2.Id}</link>
<title>2</title>
<pubDate>Wed, 01 Jun 2022 00:00:00.*</pubDate>
<description><!\[CDATA\[<p><strong>Short 2</strong></p>
<description><![CDATA[<p><strong>Short 2</strong></p>
]]></description>
<image>preview2</image>
</item>
Expand All @@ -81,7 +81,7 @@ public async Task ShouldCreateRssFeed()
<category>.NET</category>
<title>1</title>
<pubDate>Sun, 01 May 2022 00:00:00.*</pubDate>
<description><!\[CDATA\[<p>Short 1</p>
<description><![CDATA[<p>Short 1</p>
]]></description>
<image>preview1</image>
</item>
Expand Down Expand Up @@ -148,7 +148,7 @@ public async Task ShouldReturnFullContentIfRequested()
<link>http://localhost//blogPost/{blogPost2.Id}</link>
<title>2</title>
<pubDate>Wed, 01 Jun 2022 00:00:00.*</pubDate>
<description><!\[CDATA\[<p><strong>Content 2</strong></p>
<description><![CDATA[<p><strong>Content 2</strong></p>
]]></description>
<image>preview2</image>
</item>
Expand All @@ -159,7 +159,7 @@ public async Task ShouldReturnFullContentIfRequested()
<category>.NET</category>
<title>1</title>
<pubDate>Sun, 01 May 2022 00:00:00.*</pubDate>
<description><!\[CDATA\[<p>Content1</p>
<description><![CDATA[<p>Content1</p>
]]></description>
<image>preview1</image>
</item>
Expand Down Expand Up @@ -226,7 +226,7 @@ public async Task ShouldReturnNPostsIfRequested()
<link>http://localhost//blogPost/{blogPost2.Id}</link>
<title>2</title>
<pubDate>Wed, 01 Jun 2022 00:00:00.*</pubDate>
<description><!\[CDATA\[<p><strong>Content 2</strong></p>
<description><![CDATA[<p><strong>Content 2</strong></p>
]]></description>
<image>preview2</image>
</item>
Expand Down Expand Up @@ -294,7 +294,7 @@ public async Task ShouldRespectBlogPostsPerPage()
<link>http://localhost//blogPost/{blogPost2.Id}</link>
<title>2</title>
<pubDate>Wed, 01 Jun 2022 00:00:00.*</pubDate>
<description><!\[CDATA\[<p><strong>Content 2</strong></p>
<description><![CDATA[<p><strong>Content 2</strong></p>
]]></description>
<image>preview2</image>
</item>
Expand Down
Loading