Skip to content

Instantly share code, notes, and snippets.

@leejarvis
Last active December 10, 2015 07:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leejarvis/4400531 to your computer and use it in GitHub Desktop.
Save leejarvis/4400531 to your computer and use it in GitHub Desktop.
require 'test_helper'
class UserTest < ActiveSupport::TestCase
test 'full_name returns contatenated first and last name' do
user = build(:user, first_name: 'foo', last_name: 'bar')
assert_equal 'foo bar', user.full_name
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment