Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion plugin-development/plugin-test-code.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Test::Unit::TestCase.include(Fluent::Test::Helpers)
Test::Unit::TestCase.extend(Fluent::Test::Helpers)
```

Note that Fluentd provides useful Test Drivers for `input`, `output`, `filter`, `parser` and `formatter`.
Note that Fluentd provides useful Test Drivers for `input`, `output`, `multi_output`, `filter`, `parser`, `formatter` and `storage`.

The recommended fluentd plugin project structure is:

Expand Down Expand Up @@ -233,6 +233,7 @@ Returns the plugin instance managed by this Test Driver.

## Test Driver Base Owner API

* `input`
* `filter`
* `output`
* `multi_output`
Expand Down Expand Up @@ -314,6 +315,10 @@ Returns error events filtered by the given tag.

## Test Driver Base owned API

* `parser`
* `formatter`
* `storage`

### `configure(conf, syntax: :v1)`

Configures plugin instance managed by this Test Driver.
Expand Down