The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/local/bin/perl

package X;

use lib qw ( ./t/emulator_class_methodmaker );
use Test;

use Class::MakeMethods::Emulator::MethodMaker
  listed_attrib => [ qw / a b / ],
  listed_attrib => 'c';

sub new { bless {}, shift; }
my $o = new X;

TEST { 1 };

TEST { ! $o->a };
TEST { ! $o->b };
TEST { ! $o->c };

TEST { $o->a(1); };
TEST { $o->a };

TEST { $o->set_a };
TEST { $o->a };

TEST { ! $o->a(0); };
TEST { ! $o->a };

TEST { ! $o->clear_a; };
TEST { ! $o->a };

my $a = new X;
my $b = new X;
my $c = new X;
$a->set_a;
$b->set_a;
$c->set_a;


TEST {
  my %h = map { $_, $_ } X->a_objects;
  foreach (values %h) {
    $_->a or return 0;
  }
  return 1;
};

TEST {
  my %h = map { $_, $_ } X->a_objects;
  $h{$a} and $h{$b} and $h{$c};
};

TEST {
  $b->clear_a;
  my %h = map { $_, $_  } X->a_objects;
  $h{$a} and !$h{$b} and $h{$c}
};


exit 0;