Sha256: cfd28718628d0d8262f6a2b781727c93228a9b5b495e73f5ae9113b2c122f87e
Contents?: true
Size: 358 Bytes
Versions: 34
Compression:
Stored size: 358 Bytes
Contents
require 'models' require 'active_record/acts_as/matchers' RSpec.describe "Custom RSpec matchers" do it { expect(Product).to be_actable } it { expect(Product.new).to be_actable } it { expect(Pen).to act_as(:product) } it { expect(Pen).to act_as(Product) } it { expect(Pen.new).to act_as(:product) } it { expect(Pen.new).to act_as(Product) } end
Version data entries
34 entries across 34 versions & 1 rubygems