BloomTests.WebLibraryIntegration.BookTransferTests.BookWithPeriodInTitle_DoesNotGetTruncatedPdfName C# (CSharp) Method

BookWithPeriodInTitle_DoesNotGetTruncatedPdfName() private method

private BookWithPeriodInTitle_DoesNotGetTruncatedPdfName ( ) : void
return void
        public void BookWithPeriodInTitle_DoesNotGetTruncatedPdfName()
        {
            #if __MonoCS__
            Assert.That(BookTransfer.UploadPdfPath("/somewhere/Look at the sky. What do you see"),
                Is.EqualTo("/somewhere/Look at the sky. What do you see/Look at the sky. What do you see.pdf"));
            #else
            Assert.That(BookTransfer.UploadPdfPath(@"c:\somewhere\Look at the sky. What do you see"),
                Is.EqualTo(@"c:\somewhere\Look at the sky. What do you see\Look at the sky. What do you see.pdf"));
            #endif
        }