module Logux::Test::Client

Public Instance Methods

post(params) click to toggle source
Calls superclass method
# File lib/logux/test.rb, line 21
def post(params)
  if Logux::Test.http_requests_enabled
    super(params)
  else
    Logux::Test::Store.instance.add(params.to_json)
  end
end