Skip to content

Instantly share code, notes, and snippets.

@softr8
Created June 20, 2011 16:53
Show Gist options
  • Save softr8/1035981 to your computer and use it in GitHub Desktop.
Save softr8/1035981 to your computer and use it in GitHub Desktop.
Mocking methods at instance level
class Una
def get
"Esta es una prueba"
end
end
dos = Class.new(Una) do
def get
"desde aca"
end
end.new
tres = Una.new
puts dos.get #prints "desde aca"
puts tres.get #prints "Esta es una prueba"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment