Include cdn path in the stylesheet digest.

This commit is contained in:
Guo Xiang Tan
2016-06-15 18:40:13 +08:00
parent fd91a8eee6
commit 169d17edc3
2 changed files with 22 additions and 4 deletions

View File

@ -29,4 +29,18 @@ describe DiscourseStylesheets do
end
end
describe "#digest" do
before do
described_class.expects(:max_file_mtime).returns(Time.new(2016, 06, 05, 12, 30, 0, 0))
end
it "should return a digest" do
expect(described_class.new.digest).to eq('0e6c2e957cfc92ed60661c90ec3345198ccef887')
end
it "should include the cdn url when generating the digest" do
GlobalSetting.expects(:cdn_url).returns('https://fastly.maxcdn.org')
expect(described_class.new.digest).to eq('4995163b1232c54c8ed3b44200d803a90bc47613')
end
end
end