From acc730b64b00f7bf77bc1e970a46d9e5f1d16ee4 Mon Sep 17 00:00:00 2001 From: Daijiro Fukuda Date: Thu, 6 Apr 2023 16:28:21 +0900 Subject: [PATCH] Plugin development: Update test helper template Signed-off-by: Daijiro Fukuda --- plugin-development/plugin-test-code.md | 1 - 1 file changed, 1 deletion(-) diff --git a/plugin-development/plugin-test-code.md b/plugin-development/plugin-test-code.md index d6002a84..d805fc45 100644 --- a/plugin-development/plugin-test-code.md +++ b/plugin-development/plugin-test-code.md @@ -9,7 +9,6 @@ You can write test code with any other testing framework such as `RSpec`, `minit Fluentd provides useful Test Drivers according to plugin type. We can write maintainable test code for plugins using them. We can write helper.rb for output plugin as follows: ```ruby -$LOAD_PATH.unshift(File.expand_path("../../", __FILE__)) require "test-unit" require "fluent/test" require "fluent/test/driver/output"