Fix test use of Site#getConverterImpl.
This commit is contained in:
parent
0c0aea3ad7
commit
232a58d5b4
|
@ -16,11 +16,11 @@ class TestSass < Test::Unit::TestCase
|
|||
end
|
||||
|
||||
should "register the SCSS converter" do
|
||||
assert !!@site.getConverterImpl(Jekyll::Converters::Scss), "SCSS converter implementation should exist."
|
||||
assert !!@site.find_converter_instance(Jekyll::Converters::Scss), "SCSS converter implementation should exist."
|
||||
end
|
||||
|
||||
should "register the Sass converter" do
|
||||
assert !!@site.getConverterImpl(Jekyll::Converters::Sass), "Sass converter implementation should exist."
|
||||
assert !!@site.find_converter_instance(Jekyll::Converters::Sass), "Sass converter implementation should exist."
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue