metamaps--metamaps/spec/models/mapping_spec.rb
2017-02-05 19:23:02 +00:00

10 lines
326 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