7 lines
154 B
Go
7 lines
154 B
Go
package sqlbuilder
|
|
|
|
import "testing"
|
|
|
|
func TestRawExpression(t *testing.T) {
|
|
assertClauseSerialize(t, RAW("current_database()"), "current_database()")
|
|
}
|