(t *testing.T)
| 40 | } |
| 41 | |
| 42 | func TestIsPluginEnabled(t *testing.T) { |
| 43 | is := is.New(t) |
| 44 | |
| 45 | is.Equal(IsPluginEnabled("nope.sh"+disabledPluginExtension), false) |
| 46 | is.Equal(IsPluginEnabled("yep.sh"), true) |
| 47 | |
| 48 | } |
| 49 | |
| 50 | func TestSetEnabled(t *testing.T) { |
| 51 | const ( |
nothing calls this directly
no test coverage detected