Sha256: 847b6cbedffbb93cff62bdaa2be7901039a9d3236c9ab247c729af00a5a9955e

Contents?: true

Size: 404 Bytes

Versions: 1

Compression:

Stored size: 404 Bytes

Contents

# frozen_string_literal: true

require 'spec_helper'

RSpec.describe OmniAuth::MLH do
  it 'has a version number' do
    expect(OmniAuth::MLH::VERSION).not_to be_nil
    expect(OmniAuth::MLH::VERSION).to eq('4.1.0')
  end

  it 'loads the MLH strategy' do
    expect(OmniAuth::Strategies::MLH).to be_a(Class)
    expect(OmniAuth::Strategies::MLH.superclass).to eq(OmniAuth::Strategies::OAuth2)
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
omniauth-mlh-4.1.0 spec/omni_auth/mlh_spec.rb