mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-01-15 21:07:52 -05:00
11 lines
244 B
Ruby
11 lines
244 B
Ruby
require 'spec_helper'
|
|
|
|
describe Authentication do
|
|
|
|
it 'creates an authentication' do
|
|
@auth = FactoryGirl.create(:authentication)
|
|
@auth.should be_an_instance_of Authentication
|
|
@auth.member.should be_an_instance_of Member
|
|
end
|
|
end
|