You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
recyclarr/src/Recyclarr.Common.Tests/Extensions/StringExtensionsTest.cs

23 lines
524 B

using FluentAssertions;
using NUnit.Framework;
using Recyclarr.Common.Extensions;
namespace Recyclarr.Common.Tests.Extensions;
[TestFixture]
[Parallelizable(ParallelScope.All)]
public class StringExtensionsTest
{
[Test]
public void Carriage_returns_and_newlines_are_stripped_from_front_and_back()
{
"\r\ntest\n\r".TrimNewlines().Should().Be("test");
}
[Test]
public void Spaces_are_ignored_when_stripping_newlines()
{
"\n test \r".TrimNewlines().Should().Be(" test ");
}
}