view _test/Test/Config/Foo.pm @ 422:b0481c071bea ref20150831

IMPL::Config::Container tests, YAMLConfiguration now works and tested
author cin
date Sun, 20 Aug 2017 00:20:41 +0300
parents 3ed0c58e9da3
children
line wrap: on
line source

package Test::Config::Foo;
use strict;
use IMPL::declare {
    base => [
       'IMPL::Object' => undef
    ],
    props => [
       value => 'r'
    ]
};

sub CTOR {
    my $this = shift;
    
    $this->value(shift) if @_;
}

1;