1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Libraries.Test/JsonTests/JsonFixture.cs

24 lines
522 B
C#
Raw Normal View History

2013-05-13 05:52:55 +03:00
using NUnit.Framework;
2013-05-12 18:18:17 +03:00
using NzbDrone.Common.Serializer;
using NzbDrone.Test.Common;
2013-04-17 02:21:03 +03:00
2013-05-13 05:52:55 +03:00
namespace NzbDrone.Libraries.Test.JsonTests
2013-04-17 02:21:03 +03:00
{
[TestFixture]
2013-05-13 05:52:55 +03:00
public class JsonFixture : TestBase
2013-04-17 02:21:03 +03:00
{
public class TypeWithNumbers
{
public int Id { get; set; }
}
[Test]
public void should_be_able_to_deserialize_numbers()
{
var quality = new TypeWithNumbers { Id = 12 };
Json.Deserialize<TypeWithNumbers>(quality.ToJson());
2013-04-17 02:21:03 +03:00
}
}
}