You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
407 B
11 lines
407 B
package main
|
|
|
|
import "testing"
|
|
|
|
func TestConfig_ToUploadURL(t *testing.T) {
|
|
exampleConfig := &Config{Identifier: "test", Key: "MYKEY"}
|
|
result := exampleConfig.ToUploadURL()
|
|
if result != "https://api.crowdin.com/api/project/test/update-file?key=MYKEY" {
|
|
t.Fatalf("ToUploadURL returns \"%s\" instead of the expected \"%s\"", result, "https://api.crowdin.com/api/project/test/update-file?key=MYKEY")
|
|
}
|
|
}
|
|
|