22 lines
472 B
Ruby
22 lines
472 B
Ruby
|
#!/usr/bin/ruby
|
||
|
|
||
|
$:.unshift(File.join(File.dirname(__FILE__), '..', '..', '..', '..'))
|
||
|
|
||
|
require 'test/unit'
|
||
|
require 'rex/proto/http'
|
||
|
|
||
|
class Rex::Proto::Http::Handler::Erb::UnitTest < Test::Unit::TestCase
|
||
|
|
||
|
Klass = Rex::Proto::Http::Handler::Erb
|
||
|
Request = Rex::Proto::Http::Request
|
||
|
|
||
|
def test_erb
|
||
|
k = Klass.new(nil, File.dirname(__FILE__))
|
||
|
r = k.on_request(nil, Request::Get.new("/erb.rb.ut.rb.rhtml"))
|
||
|
|
||
|
assert_not_nil(r)
|
||
|
assert_equal("foo 4\n", r.body)
|
||
|
end
|
||
|
|
||
|
end
|