public void CreateBundleReturnsStylesheetBundleWithDirectorySet()
        {
            var bundle = factory.CreateBundle(
                "~/test",
                Enumerable.Empty <IFile>(),
                new BundleDescriptor {
                AssetFilenames = { "*" }
            }
                );

            bundle.Path.ShouldEqual("~/test");
        }