Skip to content

Instantly share code, notes, and snippets.

@omenking
Created June 13, 2019 02:58
Show Gist options
  • Save omenking/18d2cfd72726af763d6b38b028d1128f to your computer and use it in GitHub Desktop.
Save omenking/18d2cfd72726af763d6b38b028d1128f to your computer and use it in GitHub Desktop.
002 - QA Mastery
require 'minitest/autorun'
require_relative './hello'
describe Hello do
describe "#world" do
it "should return world" do
Hello.world.must_equal 'world'
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment