BUGFIX: emoji's url were relatives (was breaking the wordpress plugin)

This commit is contained in:
Régis Hanol
2014-01-14 23:51:36 +01:00
parent c82279b9bd
commit b024bebbe2
2 changed files with 8 additions and 0 deletions

View File

@@ -25,6 +25,13 @@ describe UrlHelper do
helper.is_local("/assets/javascripts/all.js").should be_true
end
it "is true for plugin assets" do
store = stub
store.expects(:has_been_uploaded?).returns(false)
Discourse.stubs(:store).returns(store)
helper.is_local("/plugins/all.js").should be_true
end
end
describe "#absolute" do