aboutsummaryrefslogtreecommitdiffstats
path: root/spec/lib/array_spec.moon
diff options
context:
space:
mode:
Diffstat (limited to 'spec/lib/array_spec.moon')
-rw-r--r--spec/lib/array_spec.moon76
1 files changed, 38 insertions, 38 deletions
diff --git a/spec/lib/array_spec.moon b/spec/lib/array_spec.moon
index b55cec6..130138c 100644
--- a/spec/lib/array_spec.moon
+++ b/spec/lib/array_spec.moon
@@ -2,147 +2,147 @@ import TestPilot from require 'spec.test_setup'
import T, Array from require 'alv'
describe "array", ->
- test = TestPilot '', '(import* array-)\n'
+ test = TestPilot '', '(import* array)\n'
svec3 = Array 3, T.str
it "can contain any type", ->
- COPILOT\eval_once '(array 1 2 3)'
- COPILOT\eval_once '(array true false)'
- COPILOT\eval_once '(array "a")'
- COPILOT\eval_once '(array (array 1 2) (array 3 4))'
+ COPILOT\eval_once '[1 2 3]'
+ COPILOT\eval_once '[true false]'
+ COPILOT\eval_once '["a"]'
+ COPILOT\eval_once '[[1 2] [3 4]]'
it "cannot contain mixed types", ->
- err = assert.has.error -> COPILOT\eval_once '(array 1 false)'
+ err = assert.has.error -> COPILOT\eval_once '[1 false]'
assert.matches "argument error: couldn't match arguments", err
describe "(set)", ->
it "can swap values", ->
- rt = COPILOT\eval_once '(set (array "f" "b" "c") 0 "a")'
+ rt = COPILOT\eval_once '(set ["f" "b" "c"] 0 "a")'
assert.is.true rt\is_const!
assert.is.equal svec3\mk_const({ 'a', 'b', 'c' }), rt.result
it "checks value type", ->
- err = assert.has.error -> COPILOT\eval_once '(set (array 1) 0 "a")'
+ err = assert.has.error -> COPILOT\eval_once '(set [1] 0 "a")'
assert.matches "expected value of type num, not str", err
it "checks index range", ->
- err = assert.has.error -> COPILOT\eval_once '(set (array 1 2) -1 0)'
+ err = assert.has.error -> COPILOT\eval_once '(set [1 2] -1 0)'
assert.matches "index '%-1' out of range!", err
- COPILOT\eval_once '(set (array 1 2) 0 0)'
+ COPILOT\eval_once '(set [1 2] 0 0)'
- COPILOT\eval_once '(set (array 1 2) 1 0)'
+ COPILOT\eval_once '(set [1 2] 1 0)'
- err = assert.has.error -> COPILOT\eval_once '(set (array 1 2) 2 0)'
+ err = assert.has.error -> COPILOT\eval_once '(set [1 2] 2 0)'
assert.matches "index '2' out of range!", err
describe "(get)", ->
it "can get a value", ->
- rt = COPILOT\eval_once '(get (array 1 2) 0)'
+ rt = COPILOT\eval_once '(get [1 2] 0)'
assert.is.true rt\is_const!
assert.is.equal '<num= 1>', tostring rt.result
it "checks index range", ->
- err = assert.has.error -> COPILOT\eval_once '(get (array 1 2) -1)'
+ err = assert.has.error -> COPILOT\eval_once '(get [1 2] -1)'
assert.matches "index '%-1' out of range!", err
- COPILOT\eval_once '(get (array 1 2) 0)'
+ COPILOT\eval_once '(get [1 2] 0)'
- COPILOT\eval_once '(get (array 1 2) 1)'
+ COPILOT\eval_once '(get [1 2] 1)'
- err = assert.has.error -> COPILOT\eval_once '(get (array 1 2) 2)'
+ err = assert.has.error -> COPILOT\eval_once '(get [1 2] 2)'
assert.matches "index '2' out of range!", err
describe '(head)', ->
it "can peek a value", ->
- rt = COPILOT\eval_once '(head (array 1 2))'
+ rt = COPILOT\eval_once '(head [1 2])'
assert.is.true rt\is_const!
assert.is.equal '<num= 1>', tostring rt.result
describe '(tail)', ->
it "gets rest of an array", ->
- rt = COPILOT\eval_once '(tail (array 1))'
+ rt = COPILOT\eval_once '(tail [1])'
assert.is.true rt\is_const!
assert.is.same (Array 0, T.num), rt.result.type
assert.is.same {}, rt.result!
- rt = COPILOT\eval_once '(tail (array 1 2))'
+ rt = COPILOT\eval_once '(tail [1 2])'
assert.is.true rt\is_const!
assert.is.same (Array 1, T.num), rt.result.type
assert.is.same { 2 }, rt.result!
- rt = COPILOT\eval_once '(tail (array 1 2 3 4))'
+ rt = COPILOT\eval_once '(tail [1 2 3 4])'
assert.is.true rt\is_const!
assert.is.same (Array 3, T.num), rt.result.type
assert.is.same { 2, 3, 4 }, rt.result!
describe '(prepend)', ->
it "prepends to array", ->
- rt = COPILOT\eval_once '(prepend (array 2) 1)'
+ rt = COPILOT\eval_once '(prepend [2] 1)'
assert.is.true rt\is_const!
assert.is.same (Array 2, T.num), rt.result.type
assert.is.same { 1, 2 }, rt.result!
- rt = COPILOT\eval_once '(prepend (array 2 3 4) 1)'
+ rt = COPILOT\eval_once '(prepend [2 3 4] 1)'
assert.is.true rt\is_const!
assert.is.same (Array 4, T.num), rt.result.type
assert.is.same { 1, 2, 3, 4 }, rt.result!
describe "(insert)", ->
it "can insert a value", ->
- rt = COPILOT\eval_once '(insert (array "b" "c") 0 "a")'
+ rt = COPILOT\eval_once '(insert ["b" "c"] 0 "a")'
assert.is.true rt\is_const!
assert.is.equal svec3\mk_const({ 'a', 'b', 'c' }), rt.result
- rt = COPILOT\eval_once '(insert (array "a" "c") 1 "b")'
+ rt = COPILOT\eval_once '(insert ["a" "c"] 1 "b")'
assert.is.true rt\is_const!
assert.is.equal svec3\mk_const({ 'a', 'b', 'c' }), rt.result
- rt = COPILOT\eval_once '(insert (array "a" "b") 2 "c")'
+ rt = COPILOT\eval_once '(insert ["a" "b"] 2 "c")'
assert.is.true rt\is_const!
assert.is.equal svec3\mk_const({ 'a', 'b', 'c' }), rt.result
it "checks index range", ->
- err = assert.has.error -> COPILOT\eval_once '(insert (array 1 2) -1 0)'
+ err = assert.has.error -> COPILOT\eval_once '(insert [1 2] -1 0)'
assert.matches "index '%-1' out of range!", err
- COPILOT\eval_once '(insert (array 1 2) 0 0)'
+ COPILOT\eval_once '(insert [1 2] 0 0)'
- COPILOT\eval_once '(insert (array 1 2) 1 0)'
+ COPILOT\eval_once '(insert [1 2] 1 0)'
- COPILOT\eval_once '(insert (array 1 2) 2 0)'
+ COPILOT\eval_once '(insert [1 2] 2 0)'
- err = assert.has.error -> COPILOT\eval_once '(insert (array 1 2) 3 0)'
+ err = assert.has.error -> COPILOT\eval_once '(insert [1 2] 3 0)'
assert.matches "index '3' out of range!", err
describe "(remove)", ->
it "can remove a value", ->
- rt = COPILOT\eval_once '(remove (array "d" "a" "b" "c") 0)'
+ rt = COPILOT\eval_once '(remove ["d" "a" "b" "c"] 0)'
assert.is.true rt\is_const!
assert.is.equal svec3\mk_const({ 'a', 'b', 'c' }), rt.result
- rt = COPILOT\eval_once '(remove (array "a" "b" "c" "d") 3)'
+ rt = COPILOT\eval_once '(remove ["a" "b" "c" "d"] 3)'
assert.is.true rt\is_const!
assert.is.equal svec3\mk_const({ 'a', 'b', 'c' }), rt.result
it "checks index range", ->
- err = assert.has.error -> COPILOT\eval_once '(remove (array 1 2 3) -1)'
+ err = assert.has.error -> COPILOT\eval_once '(remove [1 2 3] -1)'
assert.matches "index '%-1' out of range!", err
- err = assert.has.error -> COPILOT\eval_once '(remove (array 1 2 3) 3)'
+ err = assert.has.error -> COPILOT\eval_once '(remove [1 2 3] 3)'
assert.matches "index '3' out of range!", err
it "can be concatenated with (concat)", ->
- rt = COPILOT\eval_once '(concat (array "a" "b") (array "c"))'
+ rt = COPILOT\eval_once '(concat ["a" "b"] ["c"])'
assert.is.true rt\is_const!
assert.is.equal svec3\mk_const({ 'a', 'b', 'c' }), rt.result
it "size can be read using (size)", ->
- rt = COPILOT\eval_once '(size (array 1))'
+ rt = COPILOT\eval_once '(size [1])'
assert.is.true rt\is_const!
assert.is.equal '<num= 1>', tostring rt.result
- rt = COPILOT\eval_once '(size (array 1 2 3))'
+ rt = COPILOT\eval_once '(size [1 2 3])'
assert.is.true rt\is_const!
assert.is.equal '<num= 3>', tostring rt.result