public async Task ScribanCompiler_UseModel_ShouldPopulateTemplate()
        {
            ITemplateCompiler scribanCompiler = new ScribanCompiler();
            string            body            = await scribanCompiler.CompileBody(new TestMailModel { Name = "Handsome B. Wonderful" }, "Hello {{name}}!");

            Assert.IsTrue(body.Contains("Handsome B. Wonderful"));
        }
        public async Task ScribanCompiler_UseString_ShouldPopulateTemplate()
        {
            string            cshtml   = @"<html><body><h1>Hello {{text}}!</h1></body></html>";
            ITemplateCompiler compiler = new ScribanCompiler();
            string            body     = await compiler.CompileBody("Handsome B. Wonderful", cshtml);

            Assert.IsTrue(body.Contains("Handsome B. Wonderful"));
        }