instiki/vendor/plugins/form_spam_protection/test/mocks/enkoder.rb
2007-02-13 09:55:26 -06:00

14 lines
312 B
Ruby

require File.join(File.dirname(__FILE__), '../../vendor/enkoder/lib/enkoder')
module ActionView
module Helpers
module TextHelper
# Don't really enkode, because our tests can't eval Javascript
def enkode( html, max_length=nil )
"<code>#{html}</code>"
end
end
end
end