]> gitweb.michael.orlitzky.com - mailshears.git/blobdiff - lib/mv/mv_plugin.rb
Add some new fixtures in preparation for prune tests.
[mailshears.git] / lib / mv / mv_plugin.rb
index 2ccb9a388572acedcb3dbb67bc36120f06381347..089e6c772bc7d9ddec80db26359449aae08b2c73 100644 (file)
@@ -1,27 +1,20 @@
 module MvPlugin
   #
-  # Plugins for moving (renaming) accounts.
+  # Plugins for moving (renaming) users.
   #
 
-  def MvPlugin.included(c)
-    # Callback, called whenever another class or module includes this
-    # one. The parameter given is the name of the class or module
-    # that included us.
-    @includers ||= []
-    @includers << c
-  end
+  extend Plugin::Run
 
-  def MvPlugin.includers
-    return @includers
+  def self.runner()
+    return MvRunner
   end
 
-  def mv_domain(from, to)
-    # Rename the given domain.
-    raise NotImplementedError
+  def self.dummy_runner()
+    return MvDummyRunner
   end
 
-  def mv_account(from, to)
-    # Rename the given account.
+  def mv_user(src, dst)
+    # Rename the given user.
     raise NotImplementedError
   end