You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Assert.IsTrue(File.Exists(Path.Combine(pageOutputFolder,"index.html")),"index.html should be generated.");
38
+
Assert.IsTrue(File.Exists(Path.Combine(pageOutputFolder,"styles.css")),"styles.css should be copied as a file.");
39
+
Assert.IsFalse(Directory.Exists(Path.Combine(pageOutputFolder,"styles.css")),"styles.css must not be materialized as a folder.");
40
+
Assert.IsTrue(File.Exists(Path.Combine(pageOutputFolder,"images","logo.png")),"Nested template image should be copied.");
41
+
Assert.IsTrue(File.Exists(Path.Combine(templateFolder,"styles.css")),"Template source asset should remain in place.");
42
+
Assert.AreEqual(0,Directory.GetFiles(pageOutputFolder,"*.md",SearchOption.AllDirectories).Length,"Markdown source should not be copied into page output.");
Assert.IsTrue(File.Exists(Path.Combine(pageOutputFolder,"index.html")),"Page index.html should be generated.");
80
+
Assert.IsTrue(File.Exists(Path.Combine(pageOutputFolder,"styles.css")),"Template stylesheet should be copied into each page folder.");
81
+
Assert.IsFalse(Directory.Exists(Path.Combine(pageOutputFolder,"styles.css")),"styles.css must not be materialized as a folder.");
82
+
Assert.IsTrue(File.Exists(Path.Combine(pageOutputFolder,"images","template-logo.png")),"Template image should be copied into each page folder.");
83
+
Assert.IsTrue(File.Exists(Path.Combine(outputFolder,"images","content.png")),"Referenced source image should be copied to the rewritten parent-relative path.");
84
+
Assert.AreEqual(0,Directory.GetFiles(outputFolder,"*.md",SearchOption.AllDirectories).Length,"Markdown source should not be copied into multi-page output.");
0 commit comments