tests: generate files in out/ instead of tests/
[nit.git] / tests / test_directory_create.nit
index d2ab573..f64fed1 100644 (file)
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-"test_directory_create.write/tmp_dir".mkdir
-var f =  new OFStream.open("test_directory_create.write/tmp_file")
+"out/test_directory_create.write/tmp_dir".mkdir
+var f =  new OFStream.open("out/test_directory_create.write/tmp_file")
 f.write("test")
 f.close
-f =  new OFStream.open("test_directory_create.write/tmp_dir/tmp_file_2")
+f =  new OFStream.open("out/test_directory_create.write/tmp_dir/tmp_file_2")
 f.write("other test")
 f.close