Welcome to mirror list, hosted at ThFree Co, Russian Federation.

AttachmentRename.php « Mail « Actions « tests - github.com/roundcube/roundcubemail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dde8593a84815725310df1fac1f46da15ff07eac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php

/**
 * Test class to test rcmail_action_mail_attachment_rename
 *
 * @package Tests
 */
class Actions_Mail_AttachmentRename extends ActionTestCase
{
    /**
     * Class constructor
     */
    function test_class()
    {
        $object = new rcmail_action_mail_attachment_rename;

        $this->assertInstanceOf('rcmail_action', $object);
    }
}