Skip to content

Commit

Permalink
add TODO and better comment
Browse files Browse the repository at this point in the history
  • Loading branch information
gfr10598 committed Dec 12, 2017
1 parent a8c4196 commit de03734
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions bqext/dataset_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ package bqext_test
// on the state of our bigquery tables, so they may start failing
// if the tables are changed.

// TODO (issue #8) tests that use bq tables should create them from scratch.

import (
"encoding/json"
"fmt"
Expand Down Expand Up @@ -80,10 +82,12 @@ func TestGetTableStats(t *testing.T) {
}

// PartitionInfo provides basic information about a partition.
// Note that a similar struct is defined in dataset.go, but this
// one is used for testing the QueryAndParse method.
type PartitionInfo struct {
PartitionID string `qfield:"partition_id"`
// CreationTime time.Time `qfield:"created"`
// LastModified time.Time `qfield:"last_modified"`
PartitionID string
CreationTime time.Time
LastModified time.Time
}

func TestQueryAndParse(t *testing.T) {
Expand Down

0 comments on commit de03734

Please sign in to comment.