Rename sass partial created for new blank site (#9257)

Merge pull request 9257
This commit is contained in:
Ashwin Maroli 2023-01-19 12:30:21 +05:30 committed by GitHub
parent a891118af4
commit 3a1848066b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 2 deletions

View File

@ -14,10 +14,15 @@ Feature: Create sites
And the test_blank/_sass directory should exist And the test_blank/_sass directory should exist
And the test_blank/assets/css directory should exist And the test_blank/assets/css directory should exist
And the "test_blank/_layouts/default.html" file should exist And the "test_blank/_layouts/default.html" file should exist
And the "test_blank/_sass/main.scss" file should exist And the "test_blank/_sass/base.scss" file should exist
And the "test_blank/assets/css/main.scss" file should exist And the "test_blank/assets/css/main.scss" file should exist
And the "test_blank/_config.yml" file should exist And the "test_blank/_config.yml" file should exist
And the "test_blank/index.md" file should exist And the "test_blank/index.md" file should exist
When I run jekyll build --source test_blank --destination test_blank/_site
Then I should get a zero exit status
And the test_blank/_site directory should exist
And I should see "Start developing" in "test_blank/_site/index.html"
And I should see "body {" in "test_blank/_site/assets/css/main.css"
Scenario: Basic site Scenario: Basic site
Given I have an "index.html" file that contains "Basic Site" Given I have an "index.html" file that contains "Basic Site"

View File

@ -1,4 +1,4 @@
--- ---
--- ---
@import "main"; @import "base";