Rename UnicodePlotBackend -> Backend::UnicodePlot

This commit is contained in:
kojix2
2021-05-28 10:06:58 +09:00
parent 97d6c3e73f
commit 9e15c0ac2a
3 changed files with 19 additions and 19 deletions

View File

@@ -67,37 +67,37 @@ class YouPlotSimpleTest < Test::Unit::TestCase
end
test :lines do
assert_raise(YouPlot::Backends::UnicodePlotBackend::Error) do
assert_raise(YouPlot::Backends::UnicodePlot::Error) do
YouPlot::Command.new(['lines']).run
end
end
test :lineplots do
assert_raise(YouPlot::Backends::UnicodePlotBackend::Error) do
assert_raise(YouPlot::Backends::UnicodePlot::Error) do
YouPlot::Command.new(['lineplots']).run
end
end
test :s do
assert_raise(YouPlot::Backends::UnicodePlotBackend::Error) do
assert_raise(YouPlot::Backends::UnicodePlot::Error) do
YouPlot::Command.new(['s']).run
end
end
test :scatter do
assert_raise(YouPlot::Backends::UnicodePlotBackend::Error) do
assert_raise(YouPlot::Backends::UnicodePlot::Error) do
YouPlot::Command.new(['scatter']).run
end
end
test :d do
assert_raise(YouPlot::Backends::UnicodePlotBackend::Error) do
assert_raise(YouPlot::Backends::UnicodePlot::Error) do
YouPlot::Command.new(['d']).run
end
end
test :density do
assert_raise(YouPlot::Backends::UnicodePlotBackend::Error) do
assert_raise(YouPlot::Backends::UnicodePlot::Error) do
YouPlot::Command.new(['density']).run
end
end