Add terminating newline to yaml strings.
This commit is contained in:
@@ -28,7 +28,8 @@ namespace OpenRA
|
|||||||
|
|
||||||
public static string WriteToString(this MiniYamlNodes y)
|
public static string WriteToString(this MiniYamlNodes y)
|
||||||
{
|
{
|
||||||
return y.ToLines().JoinWith("\n");
|
// Remove all trailing newlines and restore the final EOF newline
|
||||||
|
return y.ToLines().JoinWith("\n").TrimEnd('\n') + "\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
public static IEnumerable<string> ToLines(this MiniYamlNodes y)
|
public static IEnumerable<string> ToLines(this MiniYamlNodes y)
|
||||||
|
|||||||
@@ -269,7 +269,8 @@ Parent: # comment without value
|
|||||||
|
|
||||||
var strippedYaml = @"Parent:
|
var strippedYaml = @"Parent:
|
||||||
First: value containing a \# character
|
First: value containing a \# character
|
||||||
Second: value".Replace("\r\n", "\n");
|
Second: value
|
||||||
|
".Replace("\r\n", "\n");
|
||||||
|
|
||||||
var result = MiniYaml.FromString(yaml).WriteToString();
|
var result = MiniYaml.FromString(yaml).WriteToString();
|
||||||
Assert.AreEqual(strippedYaml, result);
|
Assert.AreEqual(strippedYaml, result);
|
||||||
|
|||||||
Reference in New Issue
Block a user