})

			It("setting a property succeeds", func() {
				err := container.SetProperty("some-other-property", "some-other-value")
				Expect(err).ToNot(HaveOccurred())

				value, err := container.Property("some-other-property")
				Expect(err).ToNot(HaveOccurred())
				Expect(value).To(Equal("some-other-value"))
			})
		})
	})

	Describe("Info", func() {
		It("returns the container's state", func() {
			info, err := container.Info()
			Expect(err).ToNot(HaveOccurred())

			Expect(info.State).To(Equal("born"))
		})

		It("returns the container's events", func() {
			info, err := container.Info()
			Expect(err).ToNot(HaveOccurred())

			Expect(info.Events).To(Equal([]string{}))
		})

		It("returns the container's properties", func() {
			info, err := container.Info()
			Expect(err).ToNot(HaveOccurred())