CPTP_Util_Test::test_get_date_front PHP Method

test_get_date_front() public method

public test_get_date_front ( )
    public function test_get_date_front()
    {
        $post_type = rand_str(12);
        register_post_type($post_type, array("public" => true));
        update_option($post_type . "_structure", "/%year%/%monthnum%/%day%/%post_id%/");
        $this->assertEquals(CPTP_Util::get_date_front($post_type), "");
        update_option($post_type . "_structure", "/%post_id%/");
        $this->assertEquals(CPTP_Util::get_date_front($post_type), "/date");
    }