Skip to content

Commit

Permalink
Added failing test skeleton
Browse files Browse the repository at this point in the history
  • Loading branch information
joshmarsh committed Oct 19, 2019
1 parent c879964 commit c32ef67
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions internal/util/aws_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
package util

import (
"testing"

"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)

func TestAWSUtil(t *testing.T) {

t.Run("UploadDirectoryToS3 should upload an entire directory to S3", func(t *testing.T) {
require.Equal(t, 2, 1)
})
// assert equality
assert.Equal(t, 123, 123, "they should be equal")

// assert inequality
assert.NotEqual(t, 123, 456, "they should not be equal")

}

0 comments on commit c32ef67

Please sign in to comment.