module ThinpWorld def tools_version "0.1.5+" end def xml_file 'metadata.xml' end def dev_file 'metadata.bin' end # FIXME: we should really break out the xml stuff from # thinp-test-suite and put in a gem in this repo. def write_valid_xml(path) File.open(path, "w+") do |f| f.write < EOF end end end World(ThinpWorld)