コード例 #1
0
        [Test] public void DfUsrSnetsPath([Values(false, true)] bool expand)
        {
            var z = ed.DefaultUserSnippetsPath(expand);
            var x =
                ".atom/packages/language-howl/snippets/language-howl.cson";

            if (expand)
            {
                o(z.EndsWith(x));
            }
            else
            {
                o(z, $"~/{x}");
            }
        }