Skip to content

Commit

Permalink
Update gorage_test.go
Browse files Browse the repository at this point in the history
  • Loading branch information
ax4w committed Nov 23, 2023
1 parent 5b1a0aa commit b4aea5e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions gorage_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -171,5 +171,10 @@ func TestCreateMemOnly(t *testing.T) {
tab.AddColumn("Name", STRING)
tab.Insert([]interface{}{"Tom"})
tab.Insert([]interface{}{"Tom"})
tab.Where(":Name == 'Tom'")
tab.Update(map[string]interface{}{
"Name": "John",
})
tab.Delete()
g.Close()
}

0 comments on commit b4aea5e

Please sign in to comment.