Exemplo n.º 1
0
        public void finds_the_extension_of_itself()
        {
            var file = new AssetFile("script.js");

            file.Extension().ShouldEqual(".js");
        }
Exemplo n.º 2
0
        public void finds_the_extension_even_with_multiple_dots()
        {
            var file = new AssetFile("jquery.forms.js");

            file.Extension().ShouldEqual(".js");
        }