user_test.rb revision 38dab3b63e2730b443590a53de93e085659efe25
require 'test_helper'
context 'User instance' do
setup do
end
should 'sent email' do
end
should 'have email' do
end
should 'have name' do
end
should 'not have deleted_at' do
end
context 'after deletion' do
setup do
end
should 'have blank email' do
end
#should 'have blank password' do
# assert_nil @user.password
#end
should 'have deleted_at' do
end
end
end
context 'Admin instance' do
setup do
end
end
@admins.each(&:destroy)
end
end
end
end