class TestActMD5

Public Instance Methods

test_all() click to toggle source
# File vendor/qwik/lib/qwik/act-md5.rb, line 28
def test_all
  t_add_user

  page = @site.create_new

  page.store ''
  res = session '/test/1.md5'
  eq 'd41d8cd98f00b204e9800998ecf8427e', res.body

  page.store '*t'
  res = session '/test/1.md5'
  eq '713c3323a56a1024e3638a96c031cf91', res.body
end