Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save guilhermesilveira/893090 to your computer and use it in GitHub Desktop.
Save guilhermesilveira/893090 to your computer and use it in GitHub Desktop.
require 'rubygems'
require 'active_record'
class Client < ActiveRecord::Base
def to_s
"muhaha"
end
end
# well, this doesnt work...
assert_equal Client.new.to_s == "muhaha"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment