22 lines
470 B
Python
22 lines
470 B
Python
# Copyright (c) Microsoft. All rights reserved.
|
|
|
|
from pydantic import ValidationError
|
|
from pytest import raises
|
|
|
|
from semantic_kernel.template_engine.blocks.block import Block
|
|
|
|
|
|
def test_init():
|
|
block = Block(content="test content")
|
|
assert block.content == "test content"
|
|
|
|
|
|
def test_content_strip():
|
|
block = Block(content=" test content ")
|
|
assert block.content == "test content"
|
|
|
|
|
|
def test_no_content():
|
|
with raises(ValidationError):
|
|
Block()
|