Files
growstuff/spec/models/authentication_spec.rb

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