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

     1  package accessor
     2  
     3  import (
     4  	"testing"
     5  )
     6  
     7  func dynamoAccessor() KevValueAccessor {
     8  	return &DynamoAccessor{
     9  		testingTableName: "JSONDocuments",
    10  	}
    11  }
    12  
    13  func TestDynamoPutObject(t *testing.T) {
    14  	testPut(t, dynamoAccessor())
    15  }
    16  
    17  func TestDynamoPutAllObject(t *testing.T) {
    18  	testPutAll(t, dynamoAccessor())
    19  }