/**
  * Test that we can find the IDs from the shortcodes in post content
  *
  * @since 1.1.0
  *
  * @group group
  * @group objects
  * @group posts_object
  *
  * @covers ingot\testing\utility\posts::find_ids()
  */
 public function testFindShortcodes()
 {
     $str = 'fdsjklsdfajkl [ingot id="7"] asdfghj  sdfghjj xfsd [ingot id="3"] sdf ';
     $found = \ingot\testing\utility\posts::find_ids($str);
     $this->assertSame([7, 3], $found);
 }