github.com/emcfarlane/larking@v0.0.0-20220605172417-1704b45ee6c3/starlib/starlarksql/sql_test.go (about)

     1  // Copyright 2021 Edward McFarlane. All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  package starlarksql_test
     6  
     7  import (
     8  	"testing"
     9  
    10  	"github.com/emcfarlane/larking/starlib"
    11  
    12  	_ "modernc.org/sqlite"
    13  )
    14  
    15  func TestExecFile(t *testing.T) {
    16  	starlib.RunTests(t, "testdata/*.star", nil)
    17  }