(t *testing.T)
| 14 | ) |
| 15 | |
| 16 | func TestPlugin(t *testing.T) { |
| 17 | config := configuration.NewRepositoryWithDefaults() |
| 18 | i18n.T = i18n.Init(config) |
| 19 | |
| 20 | _ = plugin.Plugins{} |
| 21 | |
| 22 | RegisterFailHandler(Fail) |
| 23 | |
| 24 | pluginbuilder.BuildTestBinary(filepath.Join("..", "..", "..", "fixtures", "plugins", "test_with_help"), "test_with_help") |
| 25 | pluginbuilder.BuildTestBinary(filepath.Join("..", "..", "..", "fixtures", "plugins", "test_with_orgs"), "test_with_orgs") |
| 26 | pluginbuilder.BuildTestBinary(filepath.Join("..", "..", "..", "fixtures", "plugins", "test_with_orgs_short_name"), "test_with_orgs_short_name") |
| 27 | pluginbuilder.BuildTestBinary(filepath.Join("..", "..", "..", "fixtures", "plugins", "test_with_push"), "test_with_push") |
| 28 | pluginbuilder.BuildTestBinary(filepath.Join("..", "..", "..", "fixtures", "plugins", "test_with_push_short_name"), "test_with_push_short_name") |
| 29 | pluginbuilder.BuildTestBinary(filepath.Join("..", "..", "..", "fixtures", "plugins", "test_1"), "test_1") |
| 30 | pluginbuilder.BuildTestBinary(filepath.Join("..", "..", "..", "fixtures", "plugins", "test_2"), "test_2") |
| 31 | pluginbuilder.BuildTestBinary(filepath.Join("..", "..", "..", "fixtures", "plugins", "empty_plugin"), "empty_plugin") |
| 32 | pluginbuilder.BuildTestBinary(filepath.Join("..", "..", "..", "fixtures", "plugins", "alias_conflicts"), "alias_conflicts") |
| 33 | |
| 34 | RunSpecs(t, "Plugin Suite") |
| 35 | } |
nothing calls this directly
no test coverage detected