Skip to content

Instantly share code, notes, and snippets.

@calavera
Created June 8, 2010 11:06
Show Gist options
  • Select an option

  • Save calavera/429872 to your computer and use it in GitHub Desktop.

Select an option

Save calavera/429872 to your computer and use it in GitHub Desktop.
require 'java'
require 'spec'
describe "java.lang.System" do
it "mocks getProperty" do
java.lang.System.stub!(:getProperty).and_return 'foo'
java.lang.System.getProperty('bar').should == 'foo'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment