File: fix-unit-tests

package info (click to toggle)
golang-github-blevesearch-go-porterstemmer 1.0.1%2Bgit20141230.9.23a2c8e-6
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 188 kB
  • sloc: makefile: 2
file content (11 lines) | stat: -rw-r--r-- 291 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
Disable tests that access network resources.
--- a/porterstemmer_stem_string_test.go
+++ b/porterstemmer_stem_string_test.go
@@ -10,6 +10,7 @@
 )
 
 func TestStemString(t *testing.T) {
+	t.Skip("Skipping tests that attempts to access network resources.")
 
 	testDataDirName := "testdata"