2020-09-19 00:08:09 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2020-11-23 17:14:43 +09:00
|
|
|
require "tempfile"
|
2020-11-06 10:00:55 +09:00
|
|
|
require_relative '../test_helper'
|
2020-08-19 23:47:37 +09:00
|
|
|
|
2020-11-23 13:09:16 +09:00
|
|
|
class YouPlotCommandTest < Test::Unit::TestCase
|
2020-11-23 17:14:43 +09:00
|
|
|
def setup
|
|
|
|
@ta = "ta"
|
|
|
|
@stdin = $stdin.dup
|
|
|
|
@stderr = $stderr.dup
|
|
|
|
end
|
|
|
|
|
|
|
|
test :scatter do
|
|
|
|
$stdin = File.open(File.expand_path("../fixtures/iris.csv", __dir__), "r")
|
|
|
|
Tempfile.new("iris-scatter") do |tmp_file|
|
|
|
|
$stderr = tmp_file
|
|
|
|
YouPlot::Command.new(["scatter", "-H", "-d,", "-t", "IRIS"]).run
|
|
|
|
assert_equal File.read(File.expand_path("../fixtures/iris-scatter.txt", __dir__)), tmp_file.read
|
|
|
|
end
|
|
|
|
$stdin = @stdin
|
|
|
|
$stderr = @stderr
|
|
|
|
end
|
2020-08-19 23:47:37 +09:00
|
|
|
end
|