Skip to content

Instantly share code, notes, and snippets.

@omenking
Created June 13, 2019 02:57
Show Gist options
  • Save omenking/f75b6441ec64828197da34690708ad83 to your computer and use it in GitHub Desktop.
Save omenking/f75b6441ec64828197da34690708ad83 to your computer and use it in GitHub Desktop.
002 - QA Mastery
require 'minitest/autorun'
require_relative './hello'
class HelloTest < Minitest::Test
def test_world
assert_equal 'world', Hello.world, "Hello.world should return a string called 'world'"
end
def test_flunk
flunk "You shall not pass"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment