}) It("does not return error and does not remove the symlink", func() { err := fileBundle.Disable() Expect(err).NotTo(HaveOccurred()) fileStats := fs.GetFileTestStat(enablePath) Expect(fileStats).NotTo(BeNil()) Expect(fileStats.FileType).To(Equal(fakesys.FakeFileType(fakesys.FakeFileTypeSymlink))) Expect(newerInstallPath).To(Equal(fileStats.SymlinkTarget)) }) }) Context("when the symlink cannot be read", func() { It("returns error because we cannot determine if bundle is enabled or disabled", func() { fs.ReadLinkError = errors.New("fake-read-link-error") err := fileBundle.Disable() Expect(err).To(HaveOccurred()) Expect(err.Error()).To(ContainSubstring("fake-read-link-error")) }) }) }) Describe("Uninstall", func() { It("removes the files from disk", func() { _, _, err := fileBundle.Install(sourcePath) Expect(err).NotTo(HaveOccurred()) err = fileBundle.Uninstall() Expect(err).NotTo(HaveOccurred())