Sha256: 3334b9541e3d47ae7e25efc80513784cec63fc47c046e83601915bc1d3e2d399
Contents?: true
Size: 1.08 KB
Versions: 2
Compression:
Stored size: 1.08 KB
Contents
require 'spec_helper' require 'bunto-last-modified-at' describe(Bunto::BuntoSitemap) do let(:overrides) do { "source" => source_dir, "destination" => dest_dir, "url" => "http://example.org", "collections" => { "my_collection" => { "output" => true }, "other_things" => { "output" => false } } } end let(:config) do Bunto.configuration(overrides) end let(:site) { Bunto::Site.new(config) } let(:contents) { File.read(dest_dir("sitemap.xml")) } before(:each) do site.process end context "with bunto-last-modified-at" do it "correctly adds the modified time to the posts" do expect(contents).to match /<loc>http:\/\/example.org\/2015\/01\/18\/bunto-last-modified-at.html<\/loc>\s+<lastmod>2015-01-19T07:03:38\+00:00<\/lastmod>/ end it "correctly adds the modified time to the pages" do expect(contents).to match /<loc>http:\/\/example.org\/bunto-last-modified-at\/page.html<\/loc>\s+<lastmod>2015-01-19T07:03:38\+00:00<\/lastmod>/ end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
bunto-sitemap-2.0.0 | spec/test_bunto-last-modified-at.rb |
bunto-sitemap-1.0.0 | spec/test_bunto-last-modified-at.rb |