Changeset 8317 for branches/2.0/tests/testcases/groups/functions.php
- Timestamp:
- 04/24/2014 01:05:05 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.0/tests/testcases/groups/functions.php
r8200 r8317 272 272 273 273 /** 274 * @group groups_create_group 275 */ 276 public function test_groups_create_group_dont_delete_description_for_existing_group_when_no_description_is_passed() { 277 $g = $this->factory->group->create(); 278 279 $group_before = groups_get_group( array( 280 'group_id' => $g, 281 ) ); 282 283 groups_create_group( array( 284 'group_id' => $g, 285 'enable_forum' => 1, 286 ) ); 287 288 $group_after = groups_get_group( array( 289 'group_id' => $g, 290 ) ); 291 292 $this->assertSame( $group_before->description, $group_after->description ); 293 } 294 295 /** 274 296 * @group groupmeta 275 297 * @ticket BP5180
Note: See TracChangeset
for help on using the changeset viewer.