X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mailshears.git;a=blobdiff_plain;f=test%2Fmailshears_test.rb;h=aea8dfcff8812d0802f55a3edfa16953f0c1b8b1;hp=483c587a08d0a7682de79def66096ccfe50d4dac;hb=54cfedbd6d9d7ae35011048e16a6b9e6d82ab7f3;hpb=c7298aa01f95c9f6094b1bfeb05a16b20eb4de45 diff --git a/test/mailshears_test.rb b/test/mailshears_test.rb index 483c587..aea8dfc 100644 --- a/test/mailshears_test.rb +++ b/test/mailshears_test.rb @@ -17,8 +17,7 @@ class MailshearsTest < MiniTest::Unit::TestCase # Check if the given mail directory of the form "example.com/user" # exists. cfg = configuration() - mail_root = cfg.send('mail_root') - return File.directory?("#{mail_root}/#{dir}") + return File.directory?("#{cfg.dovecot_mail_root()}/#{dir}") end def connect_superuser() @@ -177,11 +176,10 @@ class MailshearsTest < MiniTest::Unit::TestCase cfg = configuration() # First create the "mail directories". - mail_root = cfg.send('mail_root') - FileUtils.mkdir_p("#{mail_root}/example.com/alice") - FileUtils.mkdir_p("#{mail_root}/example.com/booger") - FileUtils.mkdir_p("#{mail_root}/example.com/jeremy") - FileUtils.mkdir_p("#{mail_root}/example.net/adam") + FileUtils.mkdir_p("#{cfg.dovecot_mail_root()}/example.com/alice") + FileUtils.mkdir_p("#{cfg.dovecot_mail_root()}/example.com/booger") + FileUtils.mkdir_p("#{cfg.dovecot_mail_root()}/example.com/jeremy") + FileUtils.mkdir_p("#{cfg.dovecot_mail_root()}/example.net/adam") # Now the databases and their content. connection = connect_superuser() @@ -233,8 +231,7 @@ class MailshearsTest < MiniTest::Unit::TestCase connection.close() # Get rid of the maildirs. - mail_root = cfg.send('mail_root') - FileUtils.rm_r(mail_root) + FileUtils.rm_r(cfg.dovecot_mail_root()) end end