Sha256: 394a8ec8849c86b152d8614ce8385fac10eea619a3cf37ba206751b4951e077a

Contents?: true

Size: 483 Bytes

Versions: 11

Compression:

Stored size: 483 Bytes

Contents

module Loquor
 class HttpAction::Test < Minitest::Test
    def setup 
      super 
      @access_id = "123"
      @secret_key = "Foobar132"
      @endpoint = "http://www.thefoobar.com"
    end

    def deps
      logger = mock()
      logger.stubs(info: nil)

      config = mock()
      config.stubs(logger: logger)
      config.stubs(access_id: @access_id)
      config.stubs(secret_key: @secret_key)
      config.stubs(endpoint: @endpoint)
      {config: config}
    end
 end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
loquor-0.5.3 test/http_action_test.rb
loquor-0.5.2 test/http_action_test.rb
loquor-0.5.1 test/http_action_test.rb
loquor-0.5.0 test/http_action_test.rb
loquor-0.4.0 test/http_action_test.rb
loquor-0.3.0 test/http_action_test.rb
loquor-0.2.0 test/http_action_test.rb
loquor-0.1.2 test/http_action_test.rb
loquor-0.1.1 test/http_action_test.rb
loquor-0.1.0 test/http_action_test.rb
loquor-0.0.2 test/http_action_test.rb