We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 564a179 commit b93fa4fCopy full SHA for b93fa4f
src/GitVersionCore.Tests/Configuration/IgnoreConfigTests.cs
@@ -1,6 +1,7 @@
1
using System;
2
using System.IO;
3
using GitVersion.Configuration;
4
+using GitVersion.Model.Configuration;
5
using GitVersionCore.Tests.Helpers;
6
using NUnit.Framework;
7
using Shouldly;
@@ -74,5 +75,13 @@ public void WhenBadDateFormatShouldFail()
74
75
using var reader = new StringReader(yaml);
76
Should.Throw<YamlException>(() => ConfigSerializer.Read(reader));
77
}
78
+
79
+ [Test]
80
+ public void NewInstanceShouldBeEmpty()
81
+ {
82
+ var ignoreConfig = new IgnoreConfig();
83
84
+ ignoreConfig.IsEmpty.ShouldBeTrue();
85
+ }
86
87
src/GitVersionCore.Tests/Model/IgnoreConfigTests.cs
0 commit comments