summaryrefslogtreecommitdiffstats
path: root/t/01-basic.t
blob: 5eea8ab8ca0ed0bf10c518179ac36931f0b8e2af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;
use Test::Requires 'Moose';
use lib 't/lib';
use Test::Class::Refresh;

use Class::Refresh;

my $dir = prepare_temp_dir_for('01');
push @INC, $dir->dirname;

require Foo;
require Foo::Immutable;

Class::Refresh->refresh;

is_deeply([Foo->meta->get_attribute_list], ['foo'],
          "correct starting attr list");
can_ok('Foo', 'meth');
ok(!Foo->can('other_meth'), "!Foo->can('other_meth')");

is_deeply([Foo::Immutable->meta->get_attribute_list], ['foo'],
          "correct starting attr list");
can_ok('Foo::Immutable', 'meth');
ok(!Foo::Immutable->can('other_meth'), "!Foo::Immutable->can('other_meth')");


sleep 2;
update_temp_dir_for('01', $dir);

Class::Refresh->refresh;

is_deeply([Foo->meta->get_attribute_list], ['bar'],
          "correct refreshed attr list");
can_ok('Foo', 'other_meth');
ok(!Foo->can('meth'), "!Foo->can('meth')");

is_deeply([Foo::Immutable->meta->get_attribute_list], ['bar'],
          "correct refreshed attr list");
can_ok('Foo::Immutable', 'other_meth');
ok(!Foo::Immutable->can('meth'), "!Foo::Immutable->can('meth')");

done_testing;