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 there are only tcp routes", func() {
			BeforeEach(func() {
				sampleAppInfo.Routes = route_helpers.Routes{
					TcpRoutes: route_helpers.TcpRoutes{
						{ExternalPort: 52000, Port: 9000},
						{ExternalPort: 51000, Port: 8887},
					},
				}
			})

			It("emits a pretty representation of the DesiredLRP", func() {
				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("Ports"))
				Expect(outputBuffer).To(test_helpers.Say("8887"))
				Expect(outputBuffer).To(test_helpers.Say("9000"))