mirror of
https://github.com/matrix-org/dendrite
synced 2024-10-31 21:19:04 +01:00
185ad6b00d
"Shamelessly" stolen from https://github.com/matrix-org/synapse/pull/15988
13 lines
359 B
Go
13 lines
359 B
Go
package routing
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func Test_dispositionFor(t *testing.T) {
|
|
assert.Equal(t, "attachment", contentDispositionFor(""), "empty content type")
|
|
assert.Equal(t, "attachment", contentDispositionFor("image/svg"), "image/svg")
|
|
assert.Equal(t, "inline", contentDispositionFor("image/jpeg"), "image/jpg")
|
|
}
|