diff options
| author | Bond-009 <bond.009@outlook.com> | 2020-09-02 23:18:32 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-02 23:18:32 +0200 |
| commit | 52b34eb407b8028841e70518aafb52b065b9c505 (patch) | |
| tree | dd71bd9795301140a8371463132e2188a9bab5fa /tests/Jellyfin.Server.Implementations.Tests/HttpServer/ResponseFilterTests.cs | |
| parent | dcef8636d58064191b7a9c426819c39714b8ca7a (diff) | |
| parent | b9cd6a125bd66fc4edd8f95883af8a3e21df96c6 (diff) | |
Merge pull request #4039 from cvium/remove_shit_and_shit_adjacent_shit
Remove ServiceStack and related stuff
Diffstat (limited to 'tests/Jellyfin.Server.Implementations.Tests/HttpServer/ResponseFilterTests.cs')
| -rw-r--r-- | tests/Jellyfin.Server.Implementations.Tests/HttpServer/ResponseFilterTests.cs | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/Jellyfin.Server.Implementations.Tests/HttpServer/ResponseFilterTests.cs b/tests/Jellyfin.Server.Implementations.Tests/HttpServer/ResponseFilterTests.cs deleted file mode 100644 index 39bd94b59..000000000 --- a/tests/Jellyfin.Server.Implementations.Tests/HttpServer/ResponseFilterTests.cs +++ /dev/null @@ -1,18 +0,0 @@ -using Emby.Server.Implementations.HttpServer; -using Xunit; - -namespace Jellyfin.Server.Implementations.Tests.HttpServer -{ - public class ResponseFilterTests - { - [Theory] - [InlineData(null, null)] - [InlineData("", "")] - [InlineData("This is a clean string.", "This is a clean string.")] - [InlineData("This isn't \n\ra clean string.", "This isn't a clean string.")] - public void RemoveControlCharacters_ValidArgs_Correct(string? input, string? result) - { - Assert.Equal(result, ResponseFilter.RemoveControlCharacters(input)); - } - } -} |
