Make WordPress Core


Ignore:
Timestamp:
11/30/2017 11:09:33 PM (7 years ago)
Author:
pento
Message:

Code is Poetry.
WordPress' code just... wasn't.
This is now dealt with.

Props jrf, pento, netweb, GaryJ, jdgrimes, westonruter, Greg Sherwood from PHPCS, and everyone who's ever contributed to WPCS and PHPCS.
Fixes #41057.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/term/slashes.php

    r35244 r42343  
    2424    /**
    2525     * Tests the model function that expects slashed data
    26      *
    2726     */
    2827    function test_wp_insert_term() {
    2928        $taxonomies = array(
    3029            'category',
    31             'post_tag'
     30            'post_tag',
    3231        );
    3332        foreach ( $taxonomies as $taxonomy ) {
     
    3635                $taxonomy,
    3736                array(
    38                     'slug' => 'slash_test_1_'.$taxonomy,
    39                     'description' => $this->slash_3
     37                    'slug'        => 'slash_test_1_' . $taxonomy,
     38                    'description' => $this->slash_3,
    4039                )
    4140            );
    42             $term = get_term( $insert['term_id'], $taxonomy );
     41            $term   = get_term( $insert['term_id'], $taxonomy );
    4342            $this->assertEquals( wp_unslash( $this->slash_1 ), $term->name );
    4443            $this->assertEquals( wp_unslash( $this->slash_3 ), $term->description );
     
    4847                $taxonomy,
    4948                array(
    50                     'slug' => 'slash_test_2_'.$taxonomy,
    51                     'description' => $this->slash_5
     49                    'slug'        => 'slash_test_2_' . $taxonomy,
     50                    'description' => $this->slash_5,
    5251                )
    5352            );
    54             $term = get_term( $insert['term_id'], $taxonomy );
     53            $term   = get_term( $insert['term_id'], $taxonomy );
    5554            $this->assertEquals( wp_unslash( $this->slash_3 ), $term->name );
    5655            $this->assertEquals( wp_unslash( $this->slash_5 ), $term->description );
     
    6059                $taxonomy,
    6160                array(
    62                     'slug' => 'slash_test_3_'.$taxonomy,
    63                     'description' => $this->slash_4
     61                    'slug'        => 'slash_test_3_' . $taxonomy,
     62                    'description' => $this->slash_4,
    6463                )
    6564            );
    66             $term = get_term( $insert['term_id'], $taxonomy );
     65            $term   = get_term( $insert['term_id'], $taxonomy );
    6766            $this->assertEquals( wp_unslash( $this->slash_2 ), $term->name );
    6867            $this->assertEquals( wp_unslash( $this->slash_4 ), $term->description );
     
    7271    /**
    7372     * Tests the model function that expects slashed data
    74      *
    7573     */
    7674    function test_wp_update_term() {
    7775        $taxonomies = array(
    7876            'category',
    79             'post_tag'
     77            'post_tag',
    8078        );
    8179        foreach ( $taxonomies as $taxonomy ) {
    82             $id = self::factory()->term->create(array(
    83                 'taxonomy' => $taxonomy
    84             ));
     80            $id = self::factory()->term->create(
     81                array(
     82                    'taxonomy' => $taxonomy,
     83                )
     84            );
    8585
    8686            $update = wp_update_term(
     
    8888                $taxonomy,
    8989                array(
    90                     'name' => $this->slash_1,
    91                     'description' => $this->slash_3
     90                    'name'        => $this->slash_1,
     91                    'description' => $this->slash_3,
    9292                )
    9393            );
     
    101101                $taxonomy,
    102102                array(
    103                     'name' => $this->slash_3,
    104                     'description' => $this->slash_5
     103                    'name'        => $this->slash_3,
     104                    'description' => $this->slash_5,
    105105                )
    106106            );
    107             $term = get_term( $id, $taxonomy );
     107            $term   = get_term( $id, $taxonomy );
    108108            $this->assertEquals( wp_unslash( $this->slash_3 ), $term->name );
    109109            $this->assertEquals( wp_unslash( $this->slash_5 ), $term->description );
     
    113113                $taxonomy,
    114114                array(
    115                     'name' => $this->slash_2,
    116                     'description' => $this->slash_4
     115                    'name'        => $this->slash_2,
     116                    'description' => $this->slash_4,
    117117                )
    118118            );
    119             $term = get_term( $id, $taxonomy );
     119            $term   = get_term( $id, $taxonomy );
    120120            $this->assertEquals( wp_unslash( $this->slash_2 ), $term->name );
    121121            $this->assertEquals( wp_unslash( $this->slash_4 ), $term->description );
Note: See TracChangeset for help on using the changeset viewer.