user_spec.rb
1.16 KB
# Author - Igor Portela - igorportela.com | Copyright(c) 2013. All rights reserved.
require 'spec_helper'
describe User do
pending "add some examples to (or delete) #{__FILE__}"
end
# == Schema Information
#
# Table name: users
#
# id :integer(4) not null, primary key
# email :string(255) default(""), not null
# encrypted_password :string(128) default(""), not null
# reset_password_token :string(255)
# reset_password_sent_at :datetime
# remember_created_at :datetime
# sign_in_count :integer(4) default(0)
# current_sign_in_at :datetime
# last_sign_in_at :datetime
# current_sign_in_ip :string(255)
# last_sign_in_ip :string(255)
# confirmation_token :string(255)
# confirmed_at :datetime
# confirmation_sent_at :datetime
# name :string(255)
# state_id :integer(4)
# city_id :integer(4)
# address :text
# zipcode :string(255)
# phone :string(255)
# created_at :datetime not null
# updated_at :datetime not null
#