mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-06 14:55:23 -04:00
3b94cfa837
Prevents bugs causes by system cultures with different formatting
24 lines
632 B
C#
24 lines
632 B
C#
using System.Globalization;
|
|
using System.IO;
|
|
using System.Text;
|
|
using System.Threading;
|
|
using Xunit;
|
|
|
|
namespace Jellyfin.Extensions.Tests;
|
|
|
|
public static class FormattingStreamWriterTests
|
|
{
|
|
[Fact]
|
|
public static void Shuffle_Valid_Correct()
|
|
{
|
|
Thread.CurrentThread.CurrentCulture = new CultureInfo("de-DE", false);
|
|
using (var ms = new MemoryStream())
|
|
using (var txt = new FormattingStreamWriter(ms, CultureInfo.InvariantCulture))
|
|
{
|
|
txt.Write("{0}", 3.14159);
|
|
txt.Close();
|
|
Assert.Equal("3.14159", Encoding.UTF8.GetString(ms.ToArray()));
|
|
}
|
|
}
|
|
}
|