test/tc_precision.rb in mspire-0.2.1 vs test/tc_precision.rb in mspire-0.2.2
- old
+ new
@@ -20,11 +20,11 @@
def test_usage
assert_match(/Usage:/, `#{@cmd}`)
end
def test_basic_cat
- output = `#{@cmd} -o #{@tf_html} -f SHUFF_ #{@tf_bioworks_shuff}`
+ output = `#{@cmd} -o #{@tf_html} -f SHUFF_ --prefix #{@tf_bioworks_shuff}`
puts output
assert_match(/<table.*<\/table>/m, IO.read(@tf_html), "has html table in it")
assert_match(/10.*0.3000/m, IO.read(@tf_html), "has values")
[@tf_html, @tf_png].each do |file|
@@ -32,28 +32,28 @@
File.unlink(file) unless @nodelete
end
end
def test_multiple_files
- output = `#{@cmd} -o #{@tf_html} -f SHUFF_,INV_ #{@tf_bioworks_shuff} #{@tf_bioworks_esmall_xml}`
+ output = `#{@cmd} -o #{@tf_html} -f SHUFF_,INV_ --prefix #{@tf_bioworks_shuff} #{@tf_bioworks_esmall_xml}`
assert_match(/<table.*<\/table>/m, IO.read(@tf_html), "has html table in it")
assert_match(/1.*1.0000.*1.*1.0000.*0.*0.*15.*0.8667/m, IO.read(@tf_html), "has values")
[@tf_html, @tf_png].each do |file|
assert(File.exist?(file), "file #{file} exists")
File.unlink(file) unless @nodelete
end
end
def test_area_under_curve
file = @tfiles + 'ppv_area.txt'
- `#{@cmd} -o #{file} -a -f SHUFF_ #{@tf_bioworks_shuff}`
+ `#{@cmd} -o #{file} -a -f SHUFF_ --prefix #{@tf_bioworks_shuff}`
assert(File.exist?(file), "file #{file} exists")
output = IO.read(file)
assert_match(/Prec.*7.39206/, output, "consistency check")
File.unlink file
outfile = File.join(File.dirname(__FILE__), 'other.html')
- `#{@cmd} -o #{outfile} -f SHUFF_ #{@tf_bioworks_shuff}`
+ `#{@cmd} -o #{outfile} -f SHUFF_ --prefix #{@tf_bioworks_shuff}`
File.unlink outfile
File.unlink File.join(File.dirname(__FILE__),'other.png')
end
end