Created
June 13, 2019 02:57
002 - QA Mastery
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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