Skip to content
Snippets Groups Projects
Commit fe7557ba authored by Corey Donohoe's avatar Corey Donohoe
Browse files

Merge pull request #9 from github/required-contexts

Ensure required context values are present
parents b11d22bf c9ebc626
No related branches found
Tags v0.0.3
No related merge requests found
......@@ -31,8 +31,16 @@ module HTML::Pipeline
text.gsub EmojiPattern do |match|
name = $1
"<img class='emoji' title=':#{name}:' alt=':#{name}:' src='#{File.join(context[:asset_root], "emoji", "#{name}.png")}' height='20' width='20' align='absmiddle' />"
"<img class='emoji' title=':#{name}:' alt=':#{name}:' src='#{File.join(asset_root, "emoji", "#{name}.png")}' height='20' width='20' align='absmiddle' />"
end
end
# The base url to link emoji sprites
#
# Raises ArgumentError if context option has not been provided.
# Returns the context's asset_root.
def asset_root
context[:asset_root] or raise ArgumentError, "Missing context :asset_root"
end
end
end
module HTML
module Pipeline
VERSION = "0.0.2"
VERSION = "0.0.3"
end
end
......@@ -6,4 +6,11 @@ class HTML::Pipeline::EmojiFilterTest < Test::Unit::TestCase
doc = filter.call
assert_match "https://foo.com/emoji/shipit.png", doc.search('img').attr('src').value
end
def test_missing_context
filter = HTML::Pipeline::EmojiFilter.new("<p>:shipit:</p>", {})
assert_raises ArgumentError do
filter.call
end
end
end
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment