Sha256: 9b57fc6abf9ca0132d853b8c68844f1a5205dc69fcbd233b292fb20a9dad5643
Contents?: true
Size: 735 Bytes
Versions: 3
Compression:
Stored size: 735 Bytes
Contents
require 'spec_helper' require 'maltese/cli' describe Maltese::CLI do let(:subject) do described_class.new end let(:sitemap_bucket) { "search.test.datacite.org" } let(:cli_options) { { sitemap_bucket: sitemap_bucket } } describe "sitemap", vcr: true, :order => :defined do it 'should succeed' do subject.options = cli_options expect { subject.sitemap }.to output(/1001 links/).to_stdout sitemap = Zlib::GzipReader.open("public/sitemaps/sitemap.xml.gz") { |gz| gz.read } doc = Nokogiri::XML(sitemap) expect(doc.xpath("//xmlns:url").size).to eq(1001) expect(doc.xpath("//xmlns:loc").last.text).to eq("https://search.test.datacite.org/works/10.17557/tjfc.424379") end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
maltese-0.8.14 | spec/cli_spec.rb |
maltese-0.8.13 | spec/cli_spec.rb |
maltese-0.8.12 | spec/cli_spec.rb |