Exemplo n.º 1
0
        public async Task GetFormattedSkills_Skills_IsFormatted()
        {
            await opggClient.InitAsync("annie");

            string formattedSkills = opggClient.GetFormattedSkills();

            // Should match this format example:
            // W.Q.E.Q [Q -> W -> E]
            Assert.Matches(@"^\w.\w.\w.\w\s\[\w\s->\s\w\s->\s\w]$", formattedSkills);
        }