sorcery  Diff

Differences From Artifact [1bb191f684]:

To Artifact [a1bc3992a0]:



1
2
3
4





local str = dofile "lib/str.lua"
local rnd = str.rand(5,45)
print(rnd)
print(str.capitalize(rnd))




>



<
>
>
>
>
1
2
3
4

5
6
7
8
dofile'test/common.lua'
local str = dofile "lib/str.lua"
local rnd = str.rand(5,45)
print(rnd)


test('random strings do not match',str.rand(5,45) ~= str.rand(5,45))
test('strings are correct length',#str.rand(44,45) == 45)
report()