public void GetAttachmentIdFromPath_WorksForRelativePath()
        {
            var pwd       = Directory.GetCurrentDirectory();
            var localDirs = new LocalDirs(pwd);
            var path      = localDirs.GetAttachmentFile(_attachment).FullName;

            localDirs.GetAttachmentIdFromPath(path).ShouldBe(_attachment.Id.ToString());
        }