(t *testing.T)
| 83 | } |
| 84 | |
| 85 | func TestDescribeCall_UsesOptIn(t *testing.T) { |
| 86 | assert.Equal(t, "describe:read", DescribeCall(describePlugin{}, []string{"read"})) |
| 87 | } |
| 88 | |
| 89 | // TestDescribeCall_FallbackWhenOptInReturnsEmpty asserts that the helper |
| 90 | // doesn't return "" when a DescribeCall implementation gives up — the |
nothing calls this directly
no test coverage detected