private static bool MatchesFilter(string content, string tagList)
        {
            var page       = new StubStoryTestPage(content);
            var testparser = new TagFilter(tagList);

            return(testparser.Matches(page));
        }
Example #2
0
        private static bool MatchesFilter(string content, string tagList)
        {
            var page = new StubStoryTestPage(content);
            var testparser = new TagFilter(tagList);

            return (testparser.Matches(page));
        }