public void CanIdentify() { var template = File.ReadAllText(TestEnvironment.GetTestPath("HclFormatIdentifierFixture_main.tf")); HclFormatIdentifier.IsHcl(template) .Should() .BeTrue(); }
public void DoesNotExplodeOnInvalid(string template) { HclFormatIdentifier.IsHcl(template) .Should() .BeFalse(); }