diff _test/Test/Config/Bar.pm @ 417:3ed0c58e9da3 ref20150831

working on di container, tests
author cin
date Mon, 02 Nov 2015 01:56:53 +0300
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/_test/Test/Config/Bar.pm	Mon Nov 02 01:56:53 2015 +0300
@@ -0,0 +1,18 @@
+package Test::Config::Bar;
+use strict;
+use IMPL::declare {
+	base => [
+	   'IMPL::Object' => undef
+	],
+	props => [
+	   value => 'r'
+	]
+};
+
+sub CTOR {
+	my $this = shift;
+	
+	$this->value(shift) if @_;
+}
+
+1;
\ No newline at end of file