/
githubmirror
/
jekyll
Обзор
Документация
Войти
/
githubmirror
/
jekyll
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
features/incremental_rebuild.feature
104 строки
5 KB
Ashwin Maroli
Revert "Incrementally rebuild when a data file is changed (#8771)" (#9170)
26 окт 2022, 19:38
Не верифицирован
26 окт 2022, 19:38
5367a02
Код
Авторство
О чём код?
Feature: Incremental rebuild As an impatient hacker who likes to blog I want to be able to make a static site Without waiting too long for it to build Scenario: Produce correct output site Given I have a _layouts directory And I have a _posts directory And I have the following posts: | title | date | layout | content | | Wargames | 2009-03-27 | default | The only winning move is not to play. | And I have a default layout that contains "Post Layout: {{ content }}" When I run jekyll build -I Then I should get a zero exit status And the _site directory should exist And I should see "Post Layout: <p>The only winning move is not to play.</p>" in "_site/2009/03/27/wargames.html" When I run jekyll build -I Then I should get a zero exit status And the _site directory should exist And I should see "Post Layout: <p>The only winning move is not to play.</p>" in "_site/2009/03/27/wargames.html" Scenario: Generate a metadata file Given I have an "index.html" file that contains "Basic Site" When I run jekyll build -I Then the ".jekyll-metadata" file should exist Scenario: Rebuild when content is changed Given I have an "index.html" file that contains "Basic Site" When I run jekyll build -I Then I should get a zero exit status And the _site directory should exist And I should see "Basic Site" in "_site/index.html" When I wait 1 second Then I have an "index.html" file that contains "Bacon Site" When I run jekyll build -I Then I should get a zero exit status And the _site directory should exist And I should see "Bacon Site" in "_site/index.html" Scenario: Rebuild when layout is changed Given I have a _layouts directory And I have an "index.html" page with layout "default" that contains "Basic Site with Layout" And I have a default layout that contains "Page Layout: {{ content }}" When I run jekyll build -I Then I should get a zero exit status And the _site directory should exist And I should see "Page Layout: Basic Site with Layout" in "_site/index.html" When I wait 1 second Then I have a default layout that contains "Page Layout Changed: {{ content }}" When I run jekyll build Then I should get a zero exit status And the _site directory should exist And I should see "Page Layout Changed: Basic Site with Layout" in "_site/index.html" Scenario: Rebuild when an include is changed Given I have a _includes directory And I have an "index.html" page that contains "Basic Site with include tag: {% include about.textile %}" And I have an "_includes/about.textile" file that contains "Generated by Jekyll" When I run jekyll build -I Then I should get a zero exit status And the _site directory should exist And I should see "Basic Site with include tag: Generated by Jekyll" in "_site/index.html" When I wait 1 second Then I have an "_includes/about.textile" file that contains "Regenerated by Jekyll" When I run jekyll build -I Then I should get a zero exit status And the _site directory should exist And I should see "Basic Site with include tag: Regenerated by Jekyll" in "_site/index.html" Scenario: Rebuild when a dependency of document in custom collection_dir is changed Given I have a _includes directory And I have a configuration file with "collections_dir" set to "collections" And I have a collections/_posts directory And I have the following post within the "collections" directory: | title | date | layout | content | | Wargames | 2009-03-27 | default | Basic Site with include tag: {% include about.html %} | And I have an "_includes/about.html" file that contains "Generated by Jekyll" When I run jekyll build -I Then I should get a zero exit status And the _site directory should exist And I should see "Basic Site with include tag: Generated by Jekyll" in "_site/2009/03/27/wargames.html" When I wait 1 second Then I have an "_includes/about.html" file that contains "Regenerated by Jekyll" When I run jekyll build -I Then I should get a zero exit status And the _site directory should exist And I should see "Basic Site with include tag: Regenerated by Jekyll" in "_site/2009/03/27/wargames.html" Scenario: A themed-site and incremental regeneration Given I have a configuration file with "theme" set to "test-theme" And I have an "index.md" page that contains "Themed site" When I run jekyll build --incremental --verbose Then I should get a zero exit status And the _site directory should exist And I should see "Rendering: index.md" in the build output And I should see "Themed site" in "_site/index.html" When I wait 1 second And I have an "about.md" page that contains "About Themed site" When I run jekyll build --incremental --verbose Then I should get a zero exit status And the _site directory should exist And I should not see "Rendering: index.md" in the build output But I should see "Themed site" in "_site/index.html" And I should see "About Themed site" in "_site/about.html"