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

12 lines
219 B
Ruby
Raw Normal View History

2018-11-29 23:26:48 +00:00
# frozen_string_literal: true
require 'rails_helper'
2018-11-30 07:00:03 +00:00
RSpec.describe Role do
2018-11-29 23:26:48 +00:00
subject { create :role }
2018-12-06 01:48:13 +00:00
it { is_expected.to validate_presence_of :name }
2018-11-29 23:26:48 +00:00
pending "add some examples to (or delete) #{__FILE__}"
end