Sha256: 347eaa3bf6a11d9730cd5ee3a7f1f0e293eba39fb949b6fdf162bc5db53ae573
Contents?: true
Size: 620 Bytes
Versions: 21
Compression:
Stored size: 620 Bytes
Contents
require File.expand_path('../../test_helper', __FILE__) module Propono class SnsTest < Minitest::Test class SnsTestClass include Sns end def setup Propono.config.access_key = "test-access-key" Propono.config.secret_key = "test-secret-key" Propono.config.queue_region = "test-queue-region" end def test_sns Fog::AWS::SNS.expects(:new) .with(:aws_access_key_id => 'test-access-key', :aws_secret_access_key => 'test-secret-key', :region => 'test-queue-region') SnsTestClass.new.send :sns end end end
Version data entries
21 entries across 21 versions & 1 rubygems
Version | Path |
---|---|
propono-0.6.0 | test/components/sns_test.rb |