summaryrefslogtreecommitdiffstats
path: root/t/moosex-globref.t
diff options
context:
space:
mode:
Diffstat (limited to 't/moosex-globref.t')
-rw-r--r--t/moosex-globref.t88
1 files changed, 88 insertions, 0 deletions
diff --git a/t/moosex-globref.t b/t/moosex-globref.t
new file mode 100644
index 0000000..60bfa9c
--- /dev/null
+++ b/t/moosex-globref.t
@@ -0,0 +1,88 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use Test::More;
+use Test::Moose;
+BEGIN {
+ eval "use MooseX::GlobRef ()";
+ plan skip_all => "MooseX::GlobRef is required for this test" if $@;
+}
+# XXX: the way the IO modules are loaded means we can't just rely on cmop to
+# load these properly/:
+use IO::Handle;
+use IO::File;
+
+BEGIN {
+ require Moose;
+
+ package Foo::Exporter;
+ use Moose::Exporter;
+ Moose::Exporter->setup_import_methods(also => ['Moose']);
+
+ sub init_meta {
+ shift;
+ my %options = @_;
+ Moose->init_meta(%options);
+ Moose::Util::MetaRole::apply_metaroles(
+ for => $options{for_class},
+ class_metaroles => {
+ class => ['MooseX::NonMoose::Meta::Role::Class'],
+ constructor =>
+ ['MooseX::NonMoose::Meta::Role::Constructor'],
+ instance =>
+ ['MooseX::GlobRef::Role::Meta::Instance'],
+ },
+ );
+ return Class::MOP::class_of($options{for_class});
+ }
+}
+
+package IO::Handle::Moose;
+BEGIN { Foo::Exporter->import }
+extends 'IO::Handle';
+
+has bar => (
+ is => 'rw',
+ isa => 'Str',
+);
+
+sub FOREIGNBUILDARGS { return }
+
+package IO::File::Moose;
+BEGIN { Foo::Exporter->import }
+extends 'IO::File';
+
+has baz => (
+ is => 'rw',
+ isa => 'Str',
+);
+
+sub FOREIGNBUILDARGS { return }
+
+package main;
+
+with_immutable {
+ my $handle = IO::Handle::Moose->new(bar => 'BAR');
+ is($handle->bar, 'BAR', 'moose accessor works properly');
+ $handle->bar('RAB');
+ is($handle->bar, 'RAB', 'moose accessor works properly (setting)');
+} 'IO::Handle::Moose';
+
+with_immutable {
+ SKIP: {
+ my $fh = IO::File::Moose->new(baz => 'BAZ');
+ open $fh, "+>", undef
+ or skip "couldn't open a temporary file", 3;
+ is($fh->baz, 'BAZ', "accessor works");
+ $fh->baz('ZAB');
+ is($fh->baz, 'ZAB', "accessor works (writing)");
+ $fh->print("foo\n");
+ print $fh "bar\n";
+ $fh->seek(0, 0);
+ my $buf;
+ $fh->read($buf, 8);
+ is($buf, "foo\nbar\n", "filehandle still works as normal");
+ }
+} 'IO::File::Moose';
+
+done_testing;