Files
growstuff/spec/models/authentication_spec.rb
2016-11-26 12:06:02 +13:00

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