rename relish to flesh
This commit is contained in:
parent
415b1181fa
commit
9b447eb5b7
58 changed files with 252 additions and 245 deletions
|
|
@ -1,6 +1,6 @@
|
|||
mod file_lib_tests {
|
||||
use relish::ast::{eval, lex, SymTable};
|
||||
use relish::stdlib::{dynamic_stdlib, static_stdlib};
|
||||
use flesh::ast::{eval, lex, SymTable};
|
||||
use flesh::stdlib::{dynamic_stdlib, static_stdlib};
|
||||
|
||||
#[test]
|
||||
fn test_fexists() {
|
||||
|
|
@ -38,7 +38,7 @@ mod file_lib_tests {
|
|||
fn test_write_file() {
|
||||
let document = "
|
||||
(let ((s 'test')
|
||||
(t '/tmp/relish-lib-test-file-1'))
|
||||
(t '/tmp/flesh-lib-test-file-1'))
|
||||
(write-file t s)
|
||||
(echo (read-file t))
|
||||
(eq? (read-file t) s))";
|
||||
|
|
@ -59,7 +59,7 @@ mod file_lib_tests {
|
|||
fn test_append_file() {
|
||||
let document = "
|
||||
(let ((s 'test')
|
||||
(t '/tmp/relish-lib-test-file-2'))
|
||||
(t '/tmp/flesh-lib-test-file-2'))
|
||||
(write-file t s)
|
||||
(append-file t s)
|
||||
(eq? (read-file t)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue