11 lines
154 B
Go
11 lines
154 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestUpload(t *testing.T) {
|
||
|
//assert getManifestMatches gets all requirements.txt
|
||
|
upload("test/good_config")
|
||
|
}
|