mirror of
https://github.com/schollz/croc.git
synced 2024-11-24 16:23:47 +03:00
14 lines
144 B
Go
14 lines
144 B
Go
package main
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestSplitFile(t *testing.T) {
|
|
err := SplitFile("README.md", 3)
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
|
|
}
|