Sha256: cdc5aea03f84673124fdedbdcc231110d07c4157c877273170ca14e29bf13c98
Contents?: true
Size: 299 Bytes
Versions: 8
Compression:
Stored size: 299 Bytes
Contents
require File.expand_path('../../test_helper', __FILE__) module Propono class TopicTest < Minitest::Test def test_arn arn = 'foobar' aws_topic = mock aws_topic.expects(:topic_arn).returns(arn) topic = Topic.new(aws_topic) assert arn, topic.arn end end end
Version data entries
8 entries across 8 versions & 1 rubygems