From d2a31e0c84147f6ab86275e3f4b36448e3f4819f Mon Sep 17 00:00:00 2001 From: Keith Bennett Date: Wed, 3 Mar 2021 15:13:30 -0500 Subject: [PATCH] Add comment about terminating newline in captions; fix test method name. --- lib/benchmark.rb | 3 +++ test/benchmark/test_benchmark.rb | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/benchmark.rb b/lib/benchmark.rb index 361bca3..79c782e 100644 --- a/lib/benchmark.rb +++ b/lib/benchmark.rb @@ -128,6 +128,9 @@ module Benchmark # benchmark tests. Reserves +label_width+ leading spaces for # labels on each line. Prints +caption+ at the top of the # report, and uses +format+ to format each line. + # (Note: +caption+ must contain a terminating newline character, + # see the default Benchmark::Tms::CAPTION for an example.) + # # Returns an array of Benchmark::Tms objects. # # If the block returns an array of diff --git a/test/benchmark/test_benchmark.rb b/test/benchmark/test_benchmark.rb index 3030bc5..ddd4a59 100644 --- a/test/benchmark/test_benchmark.rb +++ b/test/benchmark/test_benchmark.rb @@ -71,7 +71,7 @@ def test_benchmark_does_not_print_any_space_if_the_given_caption_is_empty BENCH end - def test_benchmark_makes_extra_calcultations_with_an_Array_at_the_end_of_the_benchmark_and_show_the_result + def test_benchmark_makes_extra_calculations_with_an_Array_at_the_end_of_the_benchmark_and_show_the_result assert_equal(BENCHMARK_OUTPUT_WITH_TOTAL_AVG, capture_bench_output(:benchmark, Benchmark::CAPTION, 7,