mirror of
https://github.com/omniauth/omniauth.git
synced 2022-11-09 12:31:49 -05:00
added spec_helper for oa-openid, added stup spec for openid strategy
This commit is contained in:
parent
4fb86df1b9
commit
353f4085d4
2 changed files with 17 additions and 0 deletions
|
@ -0,0 +1,7 @@
|
|||
require File.expand_path(File.dirname(__FILE__) + '/../../spec_helper')
|
||||
|
||||
describe OmniAuth::Strategies::OpenID do
|
||||
it 'should exist' do
|
||||
# do nothing
|
||||
end
|
||||
end
|
10
oa-openid/spec/spec_helper.rb
Normal file
10
oa-openid/spec/spec_helper.rb
Normal file
|
@ -0,0 +1,10 @@
|
|||
require 'rubygems'
|
||||
require 'spec'
|
||||
require 'spec/autorun'
|
||||
require 'rack/test'
|
||||
require 'webmock/rspec'
|
||||
|
||||
include Rack::Test::Methods
|
||||
include WebMock
|
||||
|
||||
require 'omniauth/openid'
|
Loading…
Add table
Reference in a new issue