public void GetTwoLinesBlock()
{
Loader loader = new Loader(new StringReader("line 1\r\nline 2\r\n!"), new VmCompiler());
Assert.IsNotNull(loader);
Assert.AreEqual("line 1\r\nline 2\r\n", loader.GetBlockText());
Assert.IsNull(loader.GetBlockText());
}