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.
19 lines
500 B
19 lines
500 B
using FluentAssertions;
|
|
using NUnit.Framework;
|
|
using NzbDrone.Common.Extensions;
|
|
|
|
namespace NzbDrone.Common.Test.ExtensionTests
|
|
{
|
|
[TestFixture]
|
|
public class FromOctalStringFixture
|
|
{
|
|
[TestCase("\\040", " ")]
|
|
[TestCase("\\043", "#")]
|
|
[TestCase("\\101", "A")]
|
|
public void should_convert_octal_character_string_to_ascii_string(string octalString, string expected)
|
|
{
|
|
octalString.FromOctalString().Should().Be(expected);
|
|
}
|
|
}
|
|
}
|