public void CommentsWithNoEntry()
        {
            var parser = new PluginListingsParser(
                new ModListingParser(
                    new HasEnabledMarkersInjection(true)));
            var result = parser.Parse(GetStream(@"*ModA.esm
#ModB.esp
*ModC.esp"))
                         .ToList();

            result.Should().Equal(
                new ModListing("ModA.esm", true),
                new ModListing("ModC.esp", true));
        }