From 5fdee2cb5e846303b5bd4f10552b1d60201c3cb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samy=20Pess=C3=A9?= Date: Wed, 17 Feb 2016 15:59:27 +0100 Subject: [PATCH] Add file website output tests --- test/all.js | 4 ++-- test/output-website.js | 5 +++++ test/website-theme.js | 17 ----------------- 3 files changed, 7 insertions(+), 19 deletions(-) create mode 100644 test/output-website.js delete mode 100644 test/website-theme.js diff --git a/test/all.js b/test/all.js index df367b24c..f8ba1534b 100644 --- a/test/all.js +++ b/test/all.js @@ -16,6 +16,6 @@ require('./conrefs'); require('./page'); // Output -require('./output-json'); require('./assets-inliner'); -require('./website-theme'); +require('./output-json'); +require('./output-website'); diff --git a/test/output-website.js b/test/output-website.js new file mode 100644 index 000000000..86c9d2b2b --- /dev/null +++ b/test/output-website.js @@ -0,0 +1,5 @@ + +describe('Website Output', function() { + +}); + diff --git a/test/website-theme.js b/test/website-theme.js deleted file mode 100644 index afbae5e29..000000000 --- a/test/website-theme.js +++ /dev/null @@ -1,17 +0,0 @@ - - -describe('Website Theming', function() { - -// Spec proposal: -// - Plugins can "export" a theme -// - Theme can be overrided in the book itself - - -// Themes structures -// - _layout/ (Folder containing all the templates) -// - page.html (Template used for generating a page) -// - _assets/ (Assets of the theme copied to the output) - - -}); -