class DeltaTest::CLI::StatsCleanCommand
Public Instance Methods
cleanup_tmp_table_files()
click to toggle source
# File lib/delta_test/cli/stats_clean_command.rb, line 13 def cleanup_tmp_table_files tmp_dir = DeltaTest.config.tmp_table_file.parent FileUtils.rm_rf(tmp_dir) if File.directory?(tmp_dir) end
invoke!()
click to toggle source
# File lib/delta_test/cli/stats_clean_command.rb, line 9 def invoke! cleanup_tmp_table_files end