Skip to:
Content

BuddyPress.org

Ticket #5472: 5472.unit-test.diff

File 5472.unit-test.diff, 832 bytes (added by boonebgorges, 11 years ago)
  • tests/testcases/xprofile/functions.php

    diff --git tests/testcases/xprofile/functions.php tests/testcases/xprofile/functions.php
    index 84391be..5b58308 100644
    Bar!'; 
    568568
    569569                $this->assertEquals( 0, xprofile_get_field_data( 'Pens', $u ) );
    570570        }
     571
     572        /**
     573         * @group xprofile_insert_field
     574         */
     575        public function test_xprofile_insert_field_type_option() {
     576                $g = $this->factory->xprofile_group->create();
     577                $parent = $this->factory->xprofile_field->create( array(
     578                        'field_group_id' => $g,
     579                        'type' => 'selectbox',
     580                        'name' => 'Parent',
     581                ) );
     582
     583                $f = xprofile_insert_field( array(
     584                        'field_group_id' => $g,
     585                        'parent_id' => $parent,
     586                        'type' => 'option',
     587                        'name' => 'Option 1',
     588                        'field_order' => 5,
     589                ) );
     590
     591                $this->assertNotEmpty( $f );
     592        }
    571593}