Changeset 7469 for trunk/tests/testcases/groups/functions.php
- Timestamp:
- 10/23/2013 06:47:16 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/testcases/groups/functions.php
r7182 r7469 270 270 $this->assertEquals( 1, groups_get_groupmeta( $g, 'total_member_count' ) ); 271 271 } 272 273 /** 274 * @group groupmeta 275 * @ticket BP5180 276 */ 277 public function test_groups_update_groupmeta_with_line_breaks() { 278 $g = $this->factory->group->create(); 279 $meta_value = 'Foo! 280 281 Bar!'; 282 groups_update_groupmeta( $g, 'linebreak_test', $meta_value ); 283 284 $this->assertEquals( $meta_value, groups_get_groupmeta( $g, 'linebreak_test' ) ); 285 } 272 286 }
Note: See TracChangeset
for help on using the changeset viewer.