omniauth-identity 3.0.9 → 3.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,24 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- RSpec.shared_context 'persistable model' do
4
- include_context 'model with class methods'
5
-
6
- describe 'instance methods' do
7
- subject(:instance) { model_klass.new }
8
-
9
- include_context 'instance with instance methods'
10
-
11
- describe '#save' do
12
- subject(:save) do
13
- instance.email = DEFAULT_EMAIL
14
- instance.password = DEFAULT_PASSWORD
15
- instance.password_confirmation = DEFAULT_PASSWORD
16
- instance.save
17
- end
18
-
19
- it 'does not raise an error' do
20
- save
21
- end
22
- end
23
- end
24
- end