Skip to content

Commit

Permalink
Update the verification test to ignore menu resources that was added.
Browse files Browse the repository at this point in the history
  • Loading branch information
bclothier committed Nov 3, 2020
1 parent 2f85e27 commit 73fde35
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Rubberduck.Core/Properties/Resources.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 4 additions & 5 deletions Rubberduck.Core/Properties/Settings.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Rubberduck.Parsing/Properties/ParsingSettings.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions RubberduckTests/Templates/TemplateResourceTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,12 @@ public void VerifyTemplateResourceIsComplete()
foreach (DictionaryEntry entry in set)
{
var key = (string) entry.Key;

if (key.StartsWith("Menu_"))
{
continue;
}

var lhs = key.Split('_')[0];
if (!dictionary.ContainsKey(lhs))
{
Expand Down

0 comments on commit 73fde35

Please sign in to comment.