✨ Story 1.3: templates php base
This commit is contained in:
@@ -31,7 +31,11 @@ Assert-True (Test-Path 'logs/.gitkeep') 'Missing logs/.gitkeep'
|
||||
Assert-True (Test-Path 'index.php') 'Missing index.php'
|
||||
$index = Get-Content -Raw 'index.php'
|
||||
Assert-True ($index -match 'Hello World') 'index.php missing Hello World'
|
||||
Assert-True ($index -match 'meta name="viewport"') 'index.php missing viewport meta'
|
||||
if (-not ($index -match 'meta name="viewport"')) {
|
||||
Assert-True (Test-Path 'templates/header.php') 'Missing templates/header.php for viewport meta'
|
||||
$header = Get-Content -Raw 'templates/header.php'
|
||||
Assert-True ($header -match 'meta name="viewport"') 'Header missing viewport meta'
|
||||
}
|
||||
|
||||
Assert-True (Test-Path '.gitignore') 'Missing .gitignore'
|
||||
$gitignore = Get-Content -Raw '.gitignore'
|
||||
@@ -40,7 +44,6 @@ $required = @(
|
||||
'vendor/',
|
||||
'node_modules/',
|
||||
'logs/*.log',
|
||||
'assets/css/output.css',
|
||||
'.idea/',
|
||||
'.vscode/',
|
||||
'.DS_Store'
|
||||
|
||||
Reference in New Issue
Block a user