Codebase list golang-github-kyoh86-xdg / 044a8fcc-99d2-487f-a10e-4273a8e87da0/main path_test.go
044a8fcc-99d2-487f-a10e-4273a8e87da0/main

Tree @044a8fcc-99d2-487f-a10e-4273a8e87da0/main (Download .tar.gz)

path_test.go @044a8fcc-99d2-487f-a10e-4273a8e87da0/mainraw · history · blame

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())
}