summaryrefslogtreecommitdiffstats
path: root/t/data
diff options
context:
space:
mode:
Diffstat (limited to 't/data')
-rw-r--r--t/data/other-api/after/Foo.pm8
-rw-r--r--t/data/other-api/after/Foo/Bar.pm9
-rw-r--r--t/data/other-api/before/Foo.pm8
-rw-r--r--t/data/other-api/before/Foo/Bar.pm8
-rw-r--r--t/data/other-api/before/Foo/Baz.pm8
5 files changed, 41 insertions, 0 deletions
diff --git a/t/data/other-api/after/Foo.pm b/t/data/other-api/after/Foo.pm
new file mode 100644
index 0000000..7efc12c
--- /dev/null
+++ b/t/data/other-api/after/Foo.pm
@@ -0,0 +1,8 @@
+package Foo;
+use Moose;
+
+sub other_meth { }
+
+no Moose;
+
+1;
diff --git a/t/data/other-api/after/Foo/Bar.pm b/t/data/other-api/after/Foo/Bar.pm
new file mode 100644
index 0000000..973e473
--- /dev/null
+++ b/t/data/other-api/after/Foo/Bar.pm
@@ -0,0 +1,9 @@
+package Foo::Bar;
+use Moose;
+
+sub other_meth { }
+
+__PACKAGE__->meta->make_immutable;
+no Moose;
+
+1;
diff --git a/t/data/other-api/before/Foo.pm b/t/data/other-api/before/Foo.pm
new file mode 100644
index 0000000..7bad9b3
--- /dev/null
+++ b/t/data/other-api/before/Foo.pm
@@ -0,0 +1,8 @@
+package Foo;
+use Moose;
+
+sub meth { }
+
+no Moose;
+
+1;
diff --git a/t/data/other-api/before/Foo/Bar.pm b/t/data/other-api/before/Foo/Bar.pm
new file mode 100644
index 0000000..9a4fc5c
--- /dev/null
+++ b/t/data/other-api/before/Foo/Bar.pm
@@ -0,0 +1,8 @@
+package Foo::Bar;
+use Moose;
+
+sub meth { }
+
+no Moose;
+
+1;
diff --git a/t/data/other-api/before/Foo/Baz.pm b/t/data/other-api/before/Foo/Baz.pm
new file mode 100644
index 0000000..3f58ed0
--- /dev/null
+++ b/t/data/other-api/before/Foo/Baz.pm
@@ -0,0 +1,8 @@
+package Foo::Baz;
+use Moose;
+
+sub meth { }
+
+no Moose;
+
+1;