31 lines
737 B
Ruby
31 lines
737 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "helper"
|
|
|
|
class TestLiquidRenderer < JekyllUnitTest
|
|
context "profiler" do
|
|
setup do
|
|
@site = Site.new(site_configuration)
|
|
@renderer = @site.liquid_renderer
|
|
end
|
|
|
|
should "return a table with profiling results" do
|
|
@site.process
|
|
|
|
output = @renderer.stats_table
|
|
|
|
# rubocop:disable Metrics/LineLength
|
|
expected = [
|
|
%r!^\| Filename\s+|\s+Count\s+|\s+Bytes\s+|\s+Time$!,
|
|
%r!^\+(?:-+\+){4}$!,
|
|
%r!^\|_posts/2010-01-09-date-override\.markdown\s+|\s+\d+\s+|\s+\d+\.\d{2}K\s+|\s+\d+\.\d{3}$!,
|
|
]
|
|
# rubocop:enable Metrics/LineLength
|
|
|
|
expected.each do |regexp|
|
|
assert_match regexp, output
|
|
end
|
|
end
|
|
end
|
|
end
|