710888c59f
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
18 lines
346 B
Go
18 lines
346 B
Go
package config
|
|
|
|
import (
|
|
"github.com/stretchr/testify/assert"
|
|
"testing"
|
|
)
|
|
|
|
func TestConfig_DarktablePresets(t *testing.T) {
|
|
c := NewConfig(CliTestContext())
|
|
|
|
assert.False(t, c.DarktablePresets())
|
|
}
|
|
|
|
func TestConfig_Darktablebin(t *testing.T) {
|
|
c := NewConfig(CliTestContext())
|
|
|
|
assert.Equal(t, "/usr/bin/darktable-cli", c.DarktableBin())
|
|
}
|