Public Access
Add meeting assistant speech and summary automation
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
using MeetingAssistant.Transcription;
|
||||
|
||||
namespace MeetingAssistant.Tests;
|
||||
|
||||
public sealed class DictationWordStoreTests
|
||||
{
|
||||
[Fact]
|
||||
public void NormalizeParsesMarkdownBulletsAndDeduplicatesWords()
|
||||
{
|
||||
var words = MarkdownDictationWordStore.Normalize([
|
||||
"- PBI",
|
||||
"* Product Backlog Item",
|
||||
"pbi",
|
||||
"`Velocity Vanguards`",
|
||||
"",
|
||||
" \"SEW\" "
|
||||
]);
|
||||
|
||||
Assert.Equal([
|
||||
"PBI",
|
||||
"Product Backlog Item",
|
||||
"SEW",
|
||||
"Velocity Vanguards"
|
||||
], words);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user