sodium.cr/spec/spec_helper.cr
Didactic Drunk 82c19bc78e Documentation.
Remove wipe in specs until bugs sorted out.

Switch most remaining properties to getter.
2019-06-29 19:20:30 -07:00

13 lines
220 B
Crystal

require "spec"
require "../src/sodium"
def check_wiped(buf : Bytes)
GC.collect
buf.each do |b|
if b != 0_u8
puts "not wiped #{buf.inspect}"
# raise "not wiped #{buf.inspect}"
end
end
end