aboutsummaryrefslogtreecommitdiff
path: root/Mock/CommandRegistry.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Mock/CommandRegistry.pm')
-rw-r--r--Mock/CommandRegistry.pm15
1 files changed, 15 insertions, 0 deletions
diff --git a/Mock/CommandRegistry.pm b/Mock/CommandRegistry.pm
new file mode 100644
index 0000000..166879d
--- /dev/null
+++ b/Mock/CommandRegistry.pm
@@ -0,0 +1,15 @@
+package Mock::CommandRegistry;
+
+use strict;
+use warnings;
+
+use fields qw/commands/;
+
+sub new {
+ my ($class) = @_;
+ bless {}, $class;
+}
+
+sub register {
+ ...
+}