omniauth-identity 3.0.9 → 3.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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