aboutsummaryrefslogtreecommitdiff
path: root/StemmerRu/stemmer_test.go
diff options
context:
space:
mode:
authorAlexander Kiryukhin <a.kiryukhin@corp.mail.ru>2018-05-10 03:03:55 +0300
committerAlexander Kiryukhin <a.kiryukhin@corp.mail.ru>2018-05-10 03:14:06 +0300
commitcf07a154d56f87d34568c44c9c28367985a9e935 (patch)
tree6a8d5653ea55abee1f7890245f450c5649d38c0a /StemmerRu/stemmer_test.go
parent6796db17de2374cb3120287ebeb0b6a02d0b8089 (diff)
Move filesv1
Added travis.yml
Diffstat (limited to 'StemmerRu/stemmer_test.go')
-rw-r--r--StemmerRu/stemmer_test.go28
1 files changed, 0 insertions, 28 deletions
diff --git a/StemmerRu/stemmer_test.go b/StemmerRu/stemmer_test.go
deleted file mode 100644
index 018c6e3..0000000
--- a/StemmerRu/stemmer_test.go
+++ /dev/null
@@ -1,28 +0,0 @@
-package StemmerRu
-
-import (
- "testing"
- "io/ioutil"
- "encoding/json"
- "path"
-)
-
-var testFile = path.Join(`..`, `tests.json`)
-
-func TestStemWord(t *testing.T) {
- file, err := ioutil.ReadFile(testFile)
- if err != nil {
- t.Error("Can't open file", testFile)
- }
- tests := &map[string]string{}
- err = json.Unmarshal(file, tests)
- if err != nil {
- t.Error("Can't parse json", err)
- }
- for source, expected := range *tests {
- result := StemWord(source);
- if expected != result {
- t.Errorf(`Expected "%s" (source: %s) but got "%s"`, result, source, result)
- }
- }
-}