Sha256: 5deab717db33c7b1363d0bb69739c4060b5b609ef32187ed3d6205d41445586a
Contents?: true
Size: 351 Bytes
Versions: 17
Compression:
Stored size: 351 Bytes
Contents
require 'rails_helper' module BloomRemit RSpec.describe Txn, type: %i[model] do describe "associations" do it { is_expected.to belong_to(:sender) } it { is_expected.to belong_to(:owner) } it do is_expected.to have_many(:responses).class_name(Response.name). dependent(:destroy) end end end end
Version data entries
17 entries across 17 versions & 1 rubygems