github.com/smugmug/godynamo@v0.0.0-20151122084750-7913028f6623/conf_file/conf_file_test.go (about)

     1  package conf_file
     2  
     3  import (
     4  	"testing"
     5  )
     6  
     7  func TestReadConfFile(t *testing.T) {
     8  	_, err := ReadConfFile("./test_aws-config.json")
     9  	if err != nil {
    10  		t.Errorf(err.Error())
    11  	}
    12  }