2e85b3cccd
Clustering and matching have been improved along the way. This opens the door for further optimizations while keeping the code readable.
19 lines
435 B
Go
19 lines
435 B
Go
package txt
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestQuote(t *testing.T) {
|
|
t.Run("The quick brown fox.", func(t *testing.T) {
|
|
assert.Equal(t, "“The quick brown fox.”", Quote("The quick brown fox."))
|
|
})
|
|
t.Run("filename.txt", func(t *testing.T) {
|
|
assert.Equal(t, "filename.txt", Quote("filename.txt"))
|
|
})
|
|
t.Run("empty string", func(t *testing.T) {
|
|
assert.Equal(t, "“”", Quote(""))
|
|
})
|
|
}
|