Capybara has `have_title`, but there is no built-in matchers to assert `<meta>` tags. Surely it is a no-brainer to just use `assert_selector 'meta[name=robots][content=noindex]', visible: false`, but it involves some effort and a pitfall with `visible: false` being mandatory.
I wonder if there is any interest towards having something similar like `assert_meta name: 'robots', content: 'noindex'. I couldn't find anything related here not at Github.