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