{
if(truthyIzer(0)===undefined)
return "Your function will be unit tested here"
try
{
expect(truthyIzer(1)).to.equal(true)
expect(truthyIzer("false")).to.equal(true)
expect(truthyIzer("")).to.equal(false)
expect(truthyIzer(-1)).to.equal(true)
expect(truthyIzer(0)).to.equal(false)
expect(truthyIzer({})).to.equal(true)
return success()
}
catch(err)
{
return failure()
}
}