Skip to content
This repository has been archived by the owner on Feb 12, 2019. It is now read-only.

Commit

Permalink
reviews + 1 more test
Browse files Browse the repository at this point in the history
  • Loading branch information
Steve Sanders committed Feb 10, 2017
1 parent f98ef38 commit c1379b4
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions simplefs/simplefs_test.go
Expand Up @@ -28,7 +28,7 @@ func deleteTempRemotePath(path keybase1.Path) {
os.RemoveAll(path.Kbfs())
}

func TestListLocal(t *testing.T) {
func TestList(t *testing.T) {
ctx := context.Background()
sfs := &SimpleFS{}

Expand Down Expand Up @@ -67,8 +67,7 @@ func TestListLocal(t *testing.T) {
require.Error(t, err)
}

// Meant to be named TestCopyToLocal when implemented
func ExampleCopyToLocal(t *testing.T) {
func TestCopyToLocal(t *testing.T) {
ctx := context.Background()
sfs := &SimpleFS{}

Expand Down Expand Up @@ -107,8 +106,7 @@ func ExampleCopyToLocal(t *testing.T) {
assert.True(t, exists, "File copy destination must exist")
}

// Meant to be named TestCopyToRemote when implemented
func ExampleCopyToRemote(t *testing.T) {
func TestCopyToRemote(t *testing.T) {
ctx := context.Background()
sfs := &SimpleFS{}

Expand Down

0 comments on commit c1379b4

Please sign in to comment.