github.com/mutagen-io/mutagen@v0.18.0-rc1/pkg/housekeeping/housekeep_test.go (about) 1 package housekeeping 2 3 import ( 4 "testing" 5 ) 6 7 // TestHousekeep tests that Housekeep succeeds without panicking. 8 func TestHousekeep(_ *testing.T) { 9 Housekeep() 10 } 11 12 // TestHousekeepAgents tests that housekeepAgents succeeds without panicking. 13 func TestHousekeepAgents(_ *testing.T) { 14 housekeepAgents() 15 } 16 17 // TestHousekeepCaches tests that housekeepCaches succeeds without panicking. 18 func TestHousekeepCaches(_ *testing.T) { 19 housekeepCaches() 20 } 21 22 // TestHousekeepStaging tests that housekeepStaging succeeds without panicking. 23 func TestHousekeepStaging(_ *testing.T) { 24 housekeepStaging() 25 }