spec/lib/crawler/robots_txt_parser_spec.rb [22:32]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      let(:robots_text) do
        <<-TXT
        User-agent: *
        Disallow: /sso

        Sitemap: #{custom_sitemap}
        TXT
      end

      it 'returns sitemap specified in robots.txt' do
        expect(robot_parser.sitemaps.size).to eq 1
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



spec/lib/crawler/robots_txt_parser_spec.rb [39:49]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      let(:robots_text) do
        <<-TXT
        User-agent: *
        Disallow: /sso

        Sitemap: #{custom_sitemap}
        TXT
      end

      it 'returns sitemap specified in robots.txt' do
        expect(robot_parser.sitemaps.size).to eq 1
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



