Sha256: f733f7085867ac408bf5d808906200ca47fa157b71dee2c7b1a61413bb952ad2
Contents?: true
Size: 1.06 KB
Versions: 1
Compression:
Stored size: 1.06 KB
Contents
require 'spec_helper' describe Mongo::Operation::UpdateUser do require_no_required_api_version let(:context) { Mongo::Operation::Context.new } describe '#execute' do let(:user) do Mongo::Auth::User.new( user: 'durran', password: 'password', roles: [ Mongo::Auth::Roles::READ_WRITE ] ) end let(:user_updated) do Mongo::Auth::User.new( user: 'durran', password: '123', roles: [ Mongo::Auth::Roles::READ ] ) end let(:operation) do described_class.new(user: user_updated, db_name: SpecConfig.instance.test_db) end before do users = root_authorized_client.database.users if users.info('durran').any? users.remove('durran') end users.create(user) end context 'when user update was successful' do let!(:response) do operation.execute(root_authorized_primary, context: context) end it 'updates the user in the database' do expect(response).to be_successful end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mongo-2.15.0.alpha | spec/mongo/operation/update_user_spec.rb |