File: path_test.go

package info (click to toggle)
golang-github-kyoh86-xdg 1.2.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 184 kB
  • sloc: makefile: 13
file content (20 lines) | stat: -rw-r--r-- 359 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package xdg

import "testing"

func TestPath(t *testing.T) {
	t.Log(CacheHome())
	t.Log(DataHome())
	t.Log(DataDirs())
	t.Log(ConfigHome())
	t.Log(ConfigDirs())
	t.Log(RuntimeDir())
	t.Log(DesktopDir())
	t.Log(DownloadDir())
	t.Log(DocumentsDir())
	t.Log(MusicDir())
	t.Log(PicturesDir())
	t.Log(VideosDir())
	t.Log(TemplatesDir())
	t.Log(PublicShareDir())
}