2011-10-08 17:36:38 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe User do
|
|
|
|
describe "Associations" do
|
|
|
|
it { should have_many(:projects) }
|
|
|
|
it { should have_many(:users_projects) }
|
|
|
|
it { should have_many(:issues) }
|
|
|
|
it { should have_many(:assigned_issues) }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "Respond to" do
|
|
|
|
it { should respond_to(:is_admin?) }
|
|
|
|
it { should respond_to(:identifier) }
|
|
|
|
it { should respond_to(:name) }
|
|
|
|
end
|
|
|
|
|
2011-10-26 09:46:25 -04:00
|
|
|
it "should return valid identifier" do
|
2011-10-08 17:36:38 -04:00
|
|
|
user = User.new(:email => "test@mail.com")
|
2011-11-18 01:32:22 -05:00
|
|
|
user.identifier.should == "test_mail_com"
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
2011-11-10 02:46:04 -05:00
|
|
|
|
2011-11-15 02:08:05 -05:00
|
|
|
it "should have authentication token" do
|
|
|
|
user = Factory(:user)
|
|
|
|
user.authentication_token.should_not == ""
|
|
|
|
end
|
|
|
|
|
2011-11-10 02:46:04 -05:00
|
|
|
describe "dependent" do
|
2011-11-15 02:08:05 -05:00
|
|
|
before do
|
2011-11-10 02:46:04 -05:00
|
|
|
@user = Factory :user
|
2011-11-15 02:08:05 -05:00
|
|
|
@note = Factory :note,
|
2011-11-10 02:46:04 -05:00
|
|
|
:author => @user,
|
|
|
|
:project => Factory(:project)
|
|
|
|
end
|
|
|
|
|
2011-11-15 02:08:05 -05:00
|
|
|
it "should destroy all notes with user" do
|
2011-11-10 02:46:04 -05:00
|
|
|
Note.find_by_id(@note.id).should_not be_nil
|
|
|
|
@user.destroy
|
|
|
|
Note.find_by_id(@note.id).should be_nil
|
|
|
|
end
|
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: users
|
|
|
|
#
|
|
|
|
# id :integer 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 default(0)
|
|
|
|
# current_sign_in_at :datetime
|
|
|
|
# last_sign_in_at :datetime
|
|
|
|
# current_sign_in_ip :string(255)
|
|
|
|
# last_sign_in_ip :string(255)
|
|
|
|
# created_at :datetime
|
|
|
|
# updated_at :datetime
|
|
|
|
# name :string(255)
|
|
|
|
# admin :boolean default(FALSE), not null
|
2011-11-16 03:32:35 -05:00
|
|
|
# projects_limit :integer default(10)
|
|
|
|
# skype :string(255) default(""), not null
|
|
|
|
# linkedin :string(255) default(""), not null
|
|
|
|
# twitter :string(255) default(""), not null
|
|
|
|
# authentication_token :string(255)
|
2011-10-08 17:36:38 -04:00
|
|
|
#
|
|
|
|
|