Files
coder/coderd/database/sqlxqueries/sqlxqueries_test.go
T
Steven Masley 8b125d6c5d chore: Implement joins with golang templates (#6429)
* feat: Implement view for workspace builds to include rbac info

* Removes the need to fetch the workspace to run an rbac check.
* chore: Use workspace build as RBAC object
* chore: Use golang templates instead of sqlc files
2023-03-10 09:44:38 -06:00

16 lines
260 B
Go

package sqlxqueries_test
import (
"testing"
"github.com/stretchr/testify/require"
"github.com/coder/coder/coderd/database/sqlxqueries"
)
func Test_loadQueries(t *testing.T) {
t.Parallel()
_, err := sqlxqueries.LoadQueries()
require.NoError(t, err)
}