Lessons/Comments/Step1/Tests/Step.Tests.ps1

$File = (Get-Childitem "$PSScriptRoot\..\" -File) | ?{$_.name -ne "Template.ps1" -and $_.name -ne "Step.json"}  | select fullname

$global:Content =  get-content $File.Fullname

Import-Module Pester

Describe "Testing Step1" {
    it "The File should contain a single line Comment'" {
        $Content -match ".*#" | should be $true
    }
}