Data/MetaFunction/testsTemplate.ps1

$here = Split-Path -Parent $MyInvocation.MyCommand.Path
$sut = (Split-Path -Leaf $MyInvocation.MyCommand.Path) -replace '\.Tests\.', '.'
. "$here\$sut"

Describe xxModuleNamexx {
  It "Needs to have real tests... This should fail..." {
      $false | Should -Be $true
  }
}