The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package #
    TestApp::Model::CPI;
use base 'Catalyst::Model::CPI';

__PACKAGE__->config(
    gateway => {
        TestGateway1 => {
            user => 'a',
            key  => '123',
        },
        TestGateway2 => {
            user => 'b',
            key  => '456',
        }
    },
);

1;