gondole_test.go
changeset 21 555716349f64
parent 15 33bf01fc53d0
child 67 1ff7afce37fe
--- a/gondole_test.go	Wed Apr 05 22:03:09 2017 +0200
+++ b/gondole_test.go	Thu Apr 06 23:31:31 2017 +0200
@@ -1,16 +1,5 @@
 package gondole
 
 import (
-	"github.com/stretchr/testify/assert"
-	"reflect"
-	"testing"
 )
 
-func TestNewApp(t *testing.T) {
-	g, err := NewApp("foo", "bar")
-	assert.NoError(t, err, "no error")
-	assert.Equal(t, reflect.TypeOf(&Gondole{}), reflect.TypeOf(g), "should be Gondole")
-
-	assert.Equal(t, "foo", g.Name, "should be equal")
-	assert.Equal(t, "bar", g.RedirectURI, "should be equal")
-}