Expect(outputBuffer).To(test_helpers.Say("Instance 5"))
			Expect(outputBuffer).To(test_helpers.Say("CRASHED"))
			Expect(outputBuffer).To(test_helpers.SayNewLine())

			Expect(outputBuffer).NotTo(test_helpers.Say("InstanceGuid"))
			Expect(outputBuffer).To(test_helpers.Say("Crash Count"))
			Expect(outputBuffer).To(test_helpers.Say("7"))
			Expect(outputBuffer).To(test_helpers.SayNewLine())

			Expect(outputBuffer).NotTo(test_helpers.Say("CPU"))
			Expect(outputBuffer).NotTo(test_helpers.Say("Memory"))
		})

		Context("when the app was launched from a docker image", func() {
			It("emits a pretty representation of the image", func() {
				sampleAppInfo.RootFS = "docker:///wompy/app#latest"

				fakeAppExaminer.AppStatusReturns(sampleAppInfo, nil)

				test_helpers.ExecuteCommandWithArgs(statusCommand, []string{"wompy-app"})

				Expect(fakeAppExaminer.AppStatusCallCount()).To(Equal(1))
				Expect(fakeAppExaminer.AppStatusArgsForCall(0)).To(Equal("wompy-app"))

				Expect(outputBuffer).To(test_helpers.Say("Docker Image"))
				Expect(outputBuffer).To(test_helpers.SayLine("wompy/app:latest"))

				Expect(outputBuffer).To(test_helpers.Say("Annotation"))
			})

			It("emits a pretty representation of the image without its library/ prefix", func() {