Updated Loader unittest.

This commit is contained in:
Ferdinand Majerech 2014-07-31 02:09:44 +02:00
parent e919f4be51
commit ddd89c22d5

View file

@ -360,17 +360,15 @@ struct Loader
unittest unittest
{ {
import std.stdio;
string yaml_input = "red: '#ff0000'\n" string yaml_input = "red: '#ff0000'\n"
"green: '#00ff00'\n" "green: '#00ff00'\n"
"blue: '#0000ff'"; "blue: '#0000ff'";
import std.stream; auto colors = Loader(cast(void[])yaml_input).load();
auto colors = Loader(new MemoryStream(cast(char[])yaml_input)).load();
foreach(string color, string value; colors) foreach(string color, string value; colors)
{ {
import std.stdio;
writeln(color, " is ", value, " in HTML/CSS"); writeln(color, " is ", value, " in HTML/CSS");
} }
} }