Codebase list golang-github-nlopes-slack / f282e598-9350-4d40-ba4b-90cbf2cd4600/v0.6.0 block_divider_test.go
f282e598-9350-4d40-ba4b-90cbf2cd4600/v0.6.0

Tree @f282e598-9350-4d40-ba4b-90cbf2cd4600/v0.6.0 (Download .tar.gz)

block_divider_test.go @f282e598-9350-4d40-ba4b-90cbf2cd4600/v0.6.0raw · history · blame

package slack

import (
	"testing"

	"github.com/stretchr/testify/assert"
)

func TestNewDividerBlock(t *testing.T) {

	dividerBlock := NewDividerBlock()
	assert.Equal(t, string(dividerBlock.Type), "divider")

}