From 801c2a492020b716d314bdf5700aae414fd3bda1 Mon Sep 17 00:00:00 2001 From: kojix2 <2xijok@gmail.com> Date: Fri, 28 May 2021 11:21:00 +0900 Subject: [PATCH] Fix test class name --- test/youplot/backends/processing_test.rb | 2 +- test/youplot/backends/unicode_plot_backend_test.rb | 6 ------ 2 files changed, 1 insertion(+), 7 deletions(-) delete mode 100644 test/youplot/backends/unicode_plot_backend_test.rb diff --git a/test/youplot/backends/processing_test.rb b/test/youplot/backends/processing_test.rb index 88954b5..9b5ee8a 100644 --- a/test/youplot/backends/processing_test.rb +++ b/test/youplot/backends/processing_test.rb @@ -2,7 +2,7 @@ require_relative '../../test_helper' -class YouPlotCommandTest < Test::Unit::TestCase +class ProcessingTest < Test::Unit::TestCase test :count_values do @m = YouPlot::Backends::Processing assert_equal([%i[a b c], [3, 2, 1]], @m.count_values(%i[a a a b b c])) diff --git a/test/youplot/backends/unicode_plot_backend_test.rb b/test/youplot/backends/unicode_plot_backend_test.rb deleted file mode 100644 index 4dae31d..0000000 --- a/test/youplot/backends/unicode_plot_backend_test.rb +++ /dev/null @@ -1,6 +0,0 @@ -# frozen_string_literal: true - -require_relative '../../test_helper' - -class YouPlotPlotTest < Test::Unit::TestCase -end