aboutsummaryrefslogtreecommitdiffstats
path: root/spec/models/organisation_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/models/organisation_spec.rb')
-rw-r--r--spec/models/organisation_spec.rb13
1 files changed, 6 insertions, 7 deletions
diff --git a/spec/models/organisation_spec.rb b/spec/models/organisation_spec.rb
index 5cf2ded01..9b4235755 100644
--- a/spec/models/organisation_spec.rb
+++ b/spec/models/organisation_spec.rb
@@ -1,7 +1,6 @@
require 'spec_helper'
describe Organisation, :type => :model do
-
it { should validate_presence_of(:name) }
it { should validate_uniqueness_of(:code) }
@@ -40,13 +39,13 @@ describe Organisation, :type => :model do
end
it 'should update existing organisations' do
- create :organisation, name: 'dummy_name', code:'RATP', updated_at: 10.days.ago
+ create :organisation, name: 'dummy_name', code:'RATP', updated_at: 10.days.ago, sso_attributes: {functional_scope: "[\"STIF:CODIFLIGNE:Line:C00840\"]"}
Organisation.portail_sync
- Organisation.find_by(code: 'RATP').tap do |org|
- expect(org.name).to eq('RATP')
- expect(org.updated_at.utc).to be_within(1.second).of Time.now
- expect(org.synced_at.utc).to be_within(1.second).of Time.now
- end
+ org = Organisation.find_by(code: 'RATP')
+ expect(org.name).to eq('RATP')
+ expect(org.updated_at.utc).to be_within(1.second).of Time.now
+ expect(org.synced_at.utc).to be_within(1.second).of Time.now
+ expect(org.sso_attributes['functional_scope']).to eq "[\"STIF:CODIFLIGNE:Line:C00840\", \"STIF:CODIFLIGNE:Line:C00086\"]"
end
it 'should not create organisation if code is already present' do