Skip to content

Commit

Permalink
cleanup testdata_output
Browse files Browse the repository at this point in the history
  • Loading branch information
ppalmes committed May 18, 2019
1 parent 9196b21 commit c5bd6c1
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions test/test_valdate.jl
Original file line number Diff line number Diff line change
Expand Up @@ -198,8 +198,11 @@ end
end

function test_csvreaderwriter()
csvreader = CSVDateValReader(Dict(:filename=>joinpath(dirname(pathof(TSML)),"../data/testdata.csv"),:dateformat=>"d/m/y H:M"))
csvwtr = CSVDateValWriter(Dict(:filename=>joinpath(dirname(pathof(TSML)),"../data/testdata_output.csv"),:dateformat=>"d/m/y H:M"))
inputfile =joinpath(dirname(pathof(TSML)),"../data/testdata.csv")
outputfile = joinpath(dirname(pathof(TSML)),"../data/testdata_output.csv")
rm(outputfile,force=true)
csvreader = CSVDateValReader(Dict(:filename=>inputfile,:dateformat=>"d/m/y H:M"))
csvwtr = CSVDateValWriter(Dict(:filename=>outputfile,:dateformat=>"d/m/y H:M"))
filter1 = DateValgator()
filter2 = DateValNNer(Dict(:nnsize=>1))
mypipeline = Pipeline(Dict(
Expand Down

0 comments on commit c5bd6c1

Please sign in to comment.