Sha256: b36eb6c1313f7797dd2ca5b135b222ec873e08ee04ee6896cbb4d782dbbf704c
Contents?: true
Size: 793 Bytes
Versions: 48
Compression:
Stored size: 793 Bytes
Contents
require 'spec_helper.rb' describe Rack::OAuth2::Client::Grant::Password do let(:grant) { Rack::OAuth2::Client::Grant::Password } context 'when username is given' do let :attributes do {username: 'username'} end context 'when password is given' do let :attributes do {username: 'username', password: 'password'} end subject { grant.new attributes } its(:as_json) do should == {grant_type: :password, username: 'username', password: 'password'} end end context 'otherwise' do it do expect { grant.new attributes }.to raise_error AttrRequired::AttrMissing end end end context 'otherwise' do it do expect { grant.new }.to raise_error AttrRequired::AttrMissing end end end
Version data entries
48 entries across 48 versions & 1 rubygems