BloomTests.Book.BookStorageTests.Save_BookHadEditStyleSheet_NowHasPreviewAndBase C# (CSharp) Method

Save_BookHadEditStyleSheet_NowHasPreviewAndBase() private method

private Save_BookHadEditStyleSheet_NowHasPreviewAndBase ( ) : void
return void
        public void Save_BookHadEditStyleSheet_NowHasPreviewAndBase()
        {
            GetInitialStorageWithCustomHtml("<html><head> href='file://blahblah\\editMode.css' type='text/css' /></head><body><div class='bloom-page'></div></body></html>");
            AssertThatXmlIn.HtmlFile(_bookPath).HasSpecifiedNumberOfMatchesForXpath("//link[contains(@href, 'basePage')]", 1);
            AssertThatXmlIn.HtmlFile(_bookPath).HasSpecifiedNumberOfMatchesForXpath("//link[contains(@href, 'preview')]", 1);
        }