Skip to content

Commit

Permalink
Replace ginkgo with the system testing package
Browse files Browse the repository at this point in the history
  • Loading branch information
zankich committed Jul 24, 2014
1 parent 192f1c3 commit f7932b4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 21 deletions.
12 changes: 0 additions & 12 deletions gort_suite_test.go

This file was deleted.

13 changes: 4 additions & 9 deletions gort_test.go
@@ -1,12 +1,7 @@
package main

import (
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
import "testing"

var _ = Describe("Gort", func() {
PIt("should have tests", func() {
Expect(true)
})
})
func TestGort(t *testing.T) {
t.SkipNow()
}

0 comments on commit f7932b4

Please sign in to comment.