metamaps--metamaps/spec/models/mapping_spec.rb
2017-11-25 11:23:47 -08:00

12 lines
327 B
Ruby

# frozen_string_literal: true
require 'rails_helper'
RSpec.describe Mapping, type: :model do
it { is_expected.to belong_to :user }
it { is_expected.to belong_to :map }
it { is_expected.to belong_to :mappable }
it { is_expected.to validate_presence_of :map }
it { is_expected.to validate_presence_of :mappable }
end