add functions/vendor files

This commit is contained in:
Reed Allman
2017-06-11 02:05:36 -07:00
parent 6ee9c1fa0a
commit f2c7aa5ee6
7294 changed files with 1629834 additions and 0 deletions

14
vendor/github.com/go-openapi/runtime/file_test.go generated vendored Normal file
View File

@@ -0,0 +1,14 @@
package runtime
import (
"github.com/stretchr/testify/assert"
"io"
"testing"
)
func TestFileImplementsIOReader(t *testing.T) {
var file interface{} = File{}
expected := "that File implements io.Reader"
_, ok := file.(io.Reader)
assert.True(t, ok, expected)
}