Sha256: 8ee89ade954b89b216d6f87faf6fd8704e7b3066a7eb1657e96c123f387c6c43
Contents?: true
Size: 560 Bytes
Versions: 13
Compression:
Stored size: 560 Bytes
Contents
require 'spec_helper' module OpenStax module Api describe DoorkeeperApplicationIncludes do it 'must add methods to Doorkeeper::Application' do application = Doorkeeper::Application.new expect(application).to respond_to(:is_human?) expect(application.is_human?).to eq(false) expect(application).to respond_to(:is_application?) expect(application.is_application?).to eq(true) expect(application).to respond_to(:is_admin?) expect(application.is_admin?).to eq(false) end end end end
Version data entries
13 entries across 13 versions & 1 rubygems