Skip to content

Instantly share code, notes, and snippets.

@BenHall
Created January 17, 2010 21:02
Show Gist options
  • Save BenHall/279580 to your computer and use it in GitHub Desktop.
Save BenHall/279580 to your computer and use it in GitHub Desktop.
Alternative syntax for caricature IronRuby mocking framework
stubbed = stub 'System::Web::HttpRequestBase
.application_path.return("123") &&
.file_path.return("456")'
puts stubbed
puts stubbed.application_path
puts stubbed.file_path
#<HttpRequestBased7ab07bfef9249b58d070457988c7b90:0x000278c>
123
456
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment