mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Add nullable guid test
This commit is contained in:
parent
c955f19634
commit
681a0f3e75
@ -57,5 +57,13 @@ namespace Jellyfin.Common.Tests.Json
|
|||||||
var str = JsonSerializer.Serialize(guid, _options);
|
var str = JsonSerializer.Serialize(guid, _options);
|
||||||
Assert.Equal($"\"{guid:N}\"", str);
|
Assert.Equal($"\"{guid:N}\"", str);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[Fact]
|
||||||
|
public void Serialize_Nullable_Success()
|
||||||
|
{
|
||||||
|
Guid? guid = new Guid("531797E9-9457-40E0-88BC-B1D6D38752FA");
|
||||||
|
var str = JsonSerializer.Serialize(guid, _options);
|
||||||
|
Assert.Equal($"\"{guid:N}\"", str);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user