github.com/mweagle/Sparta@v1.15.0/aws/accessor/s3_test.go (about)

     1  package accessor
     2  
     3  import (
     4  	"testing"
     5  )
     6  
     7  func s3Accessor() KevValueAccessor {
     8  	return &S3Accessor{
     9  		testingBucketName: "weagle-sparta-testbucket",
    10  	}
    11  }
    12  
    13  func TestS3PutObject(t *testing.T) {
    14  	testPut(t, s3Accessor())
    15  }
    16  
    17  func TestS3PutAllObject(t *testing.T) {
    18  	testPutAll(t, s3Accessor())
    19  }