blob: d0bcb0b6badf3a60a061204bf94c116387b4bc2f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package wgconf
import (
"testing"
)
func TestParseConfig(t *testing.T) {
// Test that valid .conf files are parsed correctly and invalid ones return errors.
t.Skip("not implemented")
}
func TestValidateProfile(t *testing.T) {
// Test that profile names are resolved correctly to ~/.config/wg-wrap/profiles/*.conf.
t.Skip("not implemented")
}
|