Skip to:
Content

BuddyPress.org

Ticket #5836: 5836.unit_test_only.patch

File 5836.unit_test_only.patch, 1.0 KB (added by imath, 10 years ago)
  • tests/phpunit/testcases/xprofile/functions.php

    diff --git tests/phpunit/testcases/xprofile/functions.php tests/phpunit/testcases/xprofile/functions.php
    index b4dcdab..509c732 100644
    Bar!'; 
    570570        }
    571571
    572572        /**
     573         * @group xprofile_set_field_data
     574         * @ticket BP5836
     575         */
     576        public function test_xprofile_sync_bp_profile_new_user() {
     577                $_POST = array(
     578                        'user_login' => 'foobar',
     579                        'pass1'      => 'password',
     580                        'pass2'      => 'password',
     581                        'role'       => 'subscriber',
     582                        'email'      => 'foo@bar.com',
     583                        'first_name' => 'Foo',
     584                        'last_name'  => 'Bar',
     585                );
     586
     587                $id = add_user();
     588
     589                $display_name = 'Bar Foo';
     590
     591                $_POST = array(
     592                    'display_name' => $display_name,
     593                    'email'        => 'foo@bar.com',
     594                );
     595
     596                $id = edit_user( $id );
     597
     598                $this->assertEquals( $display_name, xprofile_get_field_data( bp_xprofile_fullname_field_id(), $id ) );
     599        }
     600
     601        /**
    573602         * @group xprofile_insert_field
    574603         */
    575604        public function test_xprofile_insert_field_type_option() {