Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save chriseckhardt/11231528 to your computer and use it in GitHub Desktop.
Save chriseckhardt/11231528 to your computer and use it in GitHub Desktop.
describe LeadService do
LeadService.configure(:test) do
before { settings.set(:instance, self) }
end
# Required for Rack::Test
#
def app
LeadService
end
it '...' do
get '/'
app.instance.stub(...)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment