Extract tests into tusd_test package
This commit is contained in:
parent
14285e971d
commit
cfabbf5ffb
|
@ -1,4 +1,4 @@
|
|||
package tusd
|
||||
package tusd_test
|
||||
|
||||
import (
|
||||
"io"
|
||||
|
@ -7,6 +7,8 @@ import (
|
|||
"reflect"
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
. "github.com/tus/tusd"
|
||||
)
|
||||
|
||||
type concatPartialStore struct {
|
||||
|
|
|
@ -1,8 +1,10 @@
|
|||
package tusd
|
||||
package tusd_test
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
"testing"
|
||||
|
||||
. "github.com/tus/tusd"
|
||||
)
|
||||
|
||||
func TestCORS(t *testing.T) {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package tusd
|
||||
package tusd_test
|
||||
|
||||
import (
|
||||
"io"
|
||||
|
@ -6,6 +6,8 @@ import (
|
|||
"os"
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
. "github.com/tus/tusd"
|
||||
)
|
||||
|
||||
type getStore struct {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package tusd
|
||||
package tusd_test
|
||||
|
||||
import (
|
||||
"io"
|
||||
|
@ -7,6 +7,8 @@ import (
|
|||
"os"
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
. "github.com/tus/tusd"
|
||||
)
|
||||
|
||||
type zeroStore struct{}
|
||||
|
|
|
@ -1,9 +1,11 @@
|
|||
package tusd
|
||||
package tusd_test
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
"os"
|
||||
"testing"
|
||||
|
||||
. "github.com/tus/tusd"
|
||||
)
|
||||
|
||||
type headStore struct {
|
||||
|
|
|
@ -1,8 +1,10 @@
|
|||
package tusd
|
||||
package tusd_test
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
"testing"
|
||||
|
||||
. "github.com/tus/tusd"
|
||||
)
|
||||
|
||||
func TestOptions(t *testing.T) {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package tusd
|
||||
package tusd_test
|
||||
|
||||
import (
|
||||
"io"
|
||||
|
@ -7,6 +7,8 @@ import (
|
|||
"os"
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
. "github.com/tus/tusd"
|
||||
)
|
||||
|
||||
type patchStore struct {
|
||||
|
|
|
@ -1,8 +1,10 @@
|
|||
package tusd
|
||||
package tusd_test
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
"testing"
|
||||
|
||||
. "github.com/tus/tusd"
|
||||
)
|
||||
|
||||
type postStore struct {
|
||||
|
|
|
@ -1,8 +1,10 @@
|
|||
package tusd
|
||||
package tusd_test
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
"testing"
|
||||
|
||||
. "github.com/tus/tusd"
|
||||
)
|
||||
|
||||
type terminateStore struct {
|
||||
|
|
Loading…
Reference in New Issue