diff options
| author | Claus Vium <clausvium@gmail.com> | 2020-09-02 12:22:14 +0200 |
|---|---|---|
| committer | Claus Vium <clausvium@gmail.com> | 2020-09-02 12:22:14 +0200 |
| commit | e3377564288598742dbf64f396ed38e42b6b2915 (patch) | |
| tree | 8af7ad746be43d9883e54b29d3cfe8c0988364e2 /tests | |
| parent | 506fc7cbaeb8f82716f84b125ac598ff740bf552 (diff) | |
Remove ServiceStack and related stuff
Diffstat (limited to 'tests')
| -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)); - } - } -} |
