mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-02-01 13:10:58 -05:00
10 lines
244 B
Ruby
10 lines
244 B
Ruby
require 'rails_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
|