Aura.Tests.Mabi.TagsTests.TagsMatchTestRaces C# (CSharp) Method

TagsMatchTestRaces() private method

private TagsMatchTestRaces ( ) : void
return void
		public void TagsMatchTestRaces()
		{
			var tags = new Tags("/animal/wolf/direwolf/beast/whitedirewolf/");

			Assert.True(tags.Matches("/wolf/"));
			Assert.True(tags.Matches("*/wolf/*"));
			Assert.True(tags.Matches("/wolf/*/beast/"));
			Assert.True(tags.Matches("/wolf/|/beast/"));
			Assert.True(tags.Matches("/wolf/&/beast/"));
			Assert.True(tags.Matches("/*direwolf/"));

			Assert.False(tags.Matches("/skeleton/"));
			Assert.False(tags.Matches("/blackdirewolf/"));
		}