Method: TestSqs#test_28_check_threading_model

Defined in:
test/sqs_test.rb

#test_28_check_threading_modelObject



192
193
194
195
196
# File 'test/sqs_test.rb', line 192

def test_28_check_threading_model
  assert(!@sqs.multi_thread)
  newsqs = Aws::SqsInterface.new(TestCredentials.aws_access_key_id, TestCredentials.aws_secret_access_key, {:multi_thread => true})
  assert(newsqs.multi_thread)
end