Removes continuous.png file after specs

The "continuous.png" file is being created during some specs and ends up
in the repository. This shouldn't happen.
This commit is contained in:
Carlos Agarie
2013-12-17 22:54:28 -02:00
parent 4da9dcf68e
commit c4623d9ce6

View File

@@ -1,6 +1,9 @@
require 'spec_helper'
describe describe DecisionTree::ID3Tree do
after :each do
File.delete("continuous.png") if File.file?("continuous.png")
end
describe "simple discrete case" do
Given(:labels) { ["sun", "rain"]}