...

Source file src/github.com/thlib/go-timezone-local/tzdata/tz_mapping_test.go

Documentation: github.com/thlib/go-timezone-local/tzdata

     1  package tzdata
     2  
     3  import (
     4  	"bytes"
     5  	"testing"
     6  )
     7  
     8  func TestUpdateWindowsTZMapping(t *testing.T) {
     9  	var buf bytes.Buffer
    10  	err := UpdateWindowsTZMapping(&buf)
    11  	if err != nil {
    12  		t.Errorf("error: %v", err)
    13  	}
    14  }
    15  

View as plain text