The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package TestApp::Feature::Null;

use Moose;

with qw( Form::Factory::Feature );

package Form::Factory::Feature::Custom::Null;
sub register_implementation { 'TestApp::Feature::Null' }

1;