hm sqlite transactions dont play with begin commit
This commit is contained in:
@@ -51,6 +51,36 @@ func TestFeeds(t *testing.T) {
|
||||
if err != nil {
|
||||
t.Fatal("cannot get:", err)
|
||||
}
|
||||
t.Errorf("%+v", got)
|
||||
t.Logf("%+v", got)
|
||||
|
||||
if got.Entry.ID == "" {
|
||||
t.Error("no entry.id")
|
||||
}
|
||||
if got.Entry.Created.IsZero() {
|
||||
t.Error("no entry.created")
|
||||
}
|
||||
if got.Entry.Updated.IsZero() {
|
||||
t.Error("no entry.updated")
|
||||
}
|
||||
if !got.Entry.Deleted.IsZero() {
|
||||
t.Error("entry.deleted")
|
||||
}
|
||||
|
||||
if got.Version.Created.IsZero() {
|
||||
t.Error("no version.created")
|
||||
}
|
||||
if got.Version.URL != "url" {
|
||||
t.Error("no version.url")
|
||||
}
|
||||
if got.Version.Cron != "cron" {
|
||||
t.Error("no version.cron")
|
||||
}
|
||||
|
||||
if !got.Execution.Executed.IsZero() {
|
||||
t.Error("execution.executed")
|
||||
}
|
||||
if !got.Execution.Version.IsZero() {
|
||||
t.Error("execution.version")
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user