old_test/unit/profile_mapping_test.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'test_helper'

class ProfileMappingTest < ActiveSupport::TestCase
  should belong_to(:profile)
  should belong_to(:profilable)
  should validate_presence_of(:profile_id)
  should validate_presence_of(:profilable_id)
  should validate_presence_of(:profilable_type)
end