1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/spec/models/passport_spec.rb

19 lines
333 B
Ruby
Raw Normal View History

2018-11-29 20:19:38 -05:00
# frozen_string_literal: true
require 'rails_helper'
2018-11-30 02:00:03 -05:00
RSpec.describe Passport do
2018-12-02 11:44:02 -05:00
subject { create :empty_passport }
2018-11-29 20:19:38 -05:00
it { is_expected.to belong_to(:person).optional }
2018-12-02 09:16:16 -05:00
it do
is_expected.to \
2018-12-02 15:29:39 -05:00
have_many(:passport_maps)
2018-12-02 09:16:16 -05:00
.dependent(:restrict_with_exception)
end
2018-12-02 15:29:39 -05:00
pending '#passport_map'
2018-12-01 05:23:58 -05:00
pending '#image'
2018-11-29 20:19:38 -05:00
end