actually skip tests until implementation exists

This commit is contained in:
Grant Murphy 2017-12-13 16:35:28 +10:00
parent d4311c96e2
commit 02901b98fc
3 changed files with 8 additions and 8 deletions

View file

@ -8,7 +8,7 @@ import (
var _ = Describe("Helpers", func() { var _ = Describe("Helpers", func() {
Context("todo", func() { Context("todo", func() {
It("should fail", func() { It("should fail", func() {
Fail("Not implemented") Skip("Not implemented")
}) })
}) })
}) })

View file

@ -15,15 +15,15 @@ var _ = Describe("ImportTracker", func() {
}) })
Context("when I have a valid go package", func() { Context("when I have a valid go package", func() {
It("should record all import specs", func() { It("should record all import specs", func() {
Fail("Not implemented") Skip("Not implemented")
}) })
It("should correctly track aliased package imports", func() { It("should correctly track aliased package imports", func() {
Fail("Not implemented") Skip("Not implemented")
}) })
It("should correctly track init only packages", func() { It("should correctly track init only packages", func() {
Fail("Not implemented") Skip("Not implemented")
}) })
}) })
}) })

View file

@ -45,11 +45,11 @@ var _ = Describe("Issue", func() {
}) })
It("should return an error if specific context is not able to be obtained", func() { It("should return an error if specific context is not able to be obtained", func() {
Fail("Not implemented") Skip("Not implemented")
}) })
It("should provide accurate line and file information", func() { It("should provide accurate line and file information", func() {
Fail("Not implemented") Skip("Not implemented")
}) })
It("should provide accurate line and file information for multi-line statements", func() { It("should provide accurate line and file information for multi-line statements", func() {
@ -87,11 +87,11 @@ var _ = Describe("Issue", func() {
}) })
It("should maintain the provided severity score", func() { It("should maintain the provided severity score", func() {
Fail("Not implemented") Skip("Not implemented")
}) })
It("should maintain the provided confidence score", func() { It("should maintain the provided confidence score", func() {
Fail("Not implemented") Skip("Not implemented")
}) })
}) })