}) Describe("getting the current disk limits", func() { currentLimits := garden.DiskLimits{ BlockSoft: 1111, BlockHard: 2222, InodeSoft: 3333, InodeHard: 4444, ByteSoft: 5555, ByteHard: 6666, } It("returns the limits returned by the backend", func() { fakeContainer.CurrentDiskLimitsReturns(currentLimits, nil) limits, err := container.CurrentDiskLimits() Ω(err).ShouldNot(HaveOccurred()) Ω(limits).Should(Equal(currentLimits)) }) It("does not change the disk limit", func() { _, err := container.CurrentDiskLimits() Ω(err).ShouldNot(HaveOccurred()) Ω(fakeContainer.LimitDiskCallCount()).Should(BeZero()) }) itFailsWhenTheContainerIsNotFound(func() error {