Sha256: 301754130abe064b841aebcaa0f9f6e71fa28d290b78a9f08b2c3a90172457da
Contents?: true
Size: 334 Bytes
Versions: 2
Compression:
Stored size: 334 Bytes
Contents
require File.expand_path('../test_helper', __FILE__) module Propono class ProponoTest < Minitest::Test def setup super @var1 = "Foobar" @var2 = 123 end def test_publish_calls_publisher_public Publisher.expects(:publish).with(@var1, @var2) Propono.publish(@var1, @var2) end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
propono-0.5.3 | test/propono_test.rb |
propono-0.5.2 | test/propono_test.rb |