1
0
mirror of https://github.com/danog/liquid.git synced 2024-11-30 08:28:58 +01:00
liquid/evaluator/predicates_test.go

17 lines
375 B
Go
Raw Normal View History

2017-07-07 13:38:53 +02:00
package evaluator
import (
"testing"
"github.com/stretchr/testify/require"
)
func TestIsEmpty(t *testing.T) {
require.True(t, IsEmpty(false))
require.False(t, IsEmpty(true))
require.True(t, IsEmpty([]string{}))
require.True(t, IsEmpty(map[string]interface{}{}))
require.False(t, IsEmpty([]string{""}))
require.False(t, IsEmpty(map[string]interface{}{"k": "v"}))
}