github.com/paweljw/pop/v5@v5.4.6/dialect_nosqlite_test.go (about)

     1  // +build !sqlite
     2  
     3  package pop
     4  
     5  import (
     6  	"testing"
     7  
     8  	"github.com/stretchr/testify/require"
     9  )
    10  
    11  func TestSqlite_NewDriver(t *testing.T) {
    12  	_, err := newSQLiteDriver()
    13  	require.Error(t, err)
    14  }