Skip to content

Instantly share code, notes, and snippets.

@bnadlerjr
Created December 1, 2013 05:18
Show Gist options
  • Save bnadlerjr/7728782 to your computer and use it in GitHub Desktop.
Save bnadlerjr/7728782 to your computer and use it in GitHub Desktop.
class EmployeeTest < Test::Unit::TestCase
def test_employee_has_an_email
assert_equal('[email protected]', employee.email)
end
private
def employee
@employee ||= Employee.new('[email protected]')
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment