Commit 9294b4be by Jon Yurek

Fix the errors happening on Travis

parent 50bfa552
module Assertions
def assert(truthy, message = nil)
expect(truthy).to(be_true, message)
expect(!!truthy).to(eq(true), message)
end
def assert_equal(expected, actual, message = nil)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment