Sha256: 3e3b07f246ac571118b5f47ec562649f3a31342da26fedce75174c1488129590
Contents?: true
Size: 630 Bytes
Versions: 2
Compression:
Stored size: 630 Bytes
Contents
# encoding: utf-8 require 'spec_helper' [:multiply, :*].each do |method| describe Function::Numeric::Multiplication::Methods, "##{method}" do subject { object.send(method, other) } let(:described_class) { Class.new { include Function::Numeric::Multiplication::Methods } } let(:object) { described_class.new.freeze } let(:other) { double('Other').freeze } it { should be_instance_of(Function::Numeric::Multiplication) } its(:left) { should be(object) } its(:right) { should be(other) } end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
axiom-0.2.0 | spec/unit/axiom/function/numeric/multiplication/methods/multiply_spec.rb |
axiom-0.1.1 | spec/unit/axiom/function/numeric/multiplication/methods/multiply_spec.rb |