Skip to content

Instantly share code, notes, and snippets.

@nirvdrum
Created June 1, 2009 19:54
Show Gist options
  • Save nirvdrum/121694 to your computer and use it in GitHub Desktop.
Save nirvdrum/121694 to your computer and use it in GitHub Desktop.
require 'helpers'
class HelpersTest < Test::Unit::TestCase
def setup
@helper = Object.new
@helper.extend(Oahu::Helpers)
end
def test_get_username
user = User.new :name => 'nirvdrum'
assert_equal 'nirvdrum', @helper.get_name(user)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment