summaryrefslogtreecommitdiffstats
path: root/t/10-immutable.t
diff options
context:
space:
mode:
Diffstat (limited to 't/10-immutable.t')
-rw-r--r--t/10-immutable.t45
1 files changed, 0 insertions, 45 deletions
diff --git a/t/10-immutable.t b/t/10-immutable.t
deleted file mode 100644
index 275b387..0000000
--- a/t/10-immutable.t
+++ /dev/null
@@ -1,45 +0,0 @@
-#!/usr/bin/env perl
-use strict;
-use warnings;
-use Test::More;
-
-package Foo;
-
-sub new {
- my $class = shift;
- bless { @_ }, $class;
-}
-
-sub foo {
- my $self = shift;
- return $self->{foo} unless @_;
- $self->{foo} = shift;
-}
-
-sub baz { 'Foo' }
-sub quux { ref(shift) }
-
-package Foo::Moose;
-use Moose;
-use MooseX::NonMoose;
-extends 'Foo';
-
-has bar => (
- is => 'rw',
-);
-
-__PACKAGE__->meta->make_immutable;
-
-package main;
-
-my $foo_moose = Foo::Moose->new(foo => 'FOO', bar => 'BAR');
-is($foo_moose->foo, 'FOO', 'foo set in constructor');
-is($foo_moose->bar, 'BAR', 'bar set in constructor');
-$foo_moose->foo('BAZ');
-$foo_moose->bar('QUUX');
-is($foo_moose->foo, 'BAZ', 'foo set by accessor');
-is($foo_moose->bar, 'QUUX', 'bar set by accessor');
-is($foo_moose->baz, 'Foo', 'baz method');
-is($foo_moose->quux, 'Foo::Moose', 'quux method');
-
-done_testing;