user_test.rb revision a0626d70adc75093ce97fced77d2c1feac68a54b
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