Sha256: 57f835867fd8bcc9cd6d20ffae21ec68924ab14ada9e23e5b03172a90d81c616
Contents?: true
Size: 550 Bytes
Versions: 18
Compression:
Stored size: 550 Bytes
Contents
RSpec.describe Mutant::Actor::Message do let(:type) { double('Type') } let(:payload) { double('Payload') } describe '.new' do subject { described_class.new(*arguments) } context 'with one argument' do let(:arguments) { [type] } its(:type) { should be(type) } its(:payload) { should be(Mutant::Actor::Undefined) } end context 'with two arguments' do let(:arguments) { [type, payload] } its(:type) { should be(type) } its(:payload) { should be(payload) } end end end
Version data entries
18 entries across 18 versions & 1 rubygems