1
0
Fork 0
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:
James A. Rosen 2010-06-12 22:41:05 -04:00 committed by James Rosen
parent 4fb86df1b9
commit 353f4085d4
2 changed files with 17 additions and 0 deletions

View file

@ -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

View 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'