Sha256: add2fcc7ae7c72fd5b4ea335969c79f7bef555b34bccb3b5dd5cdf273cb0b603

Contents?: true

Size: 1.17 KB

Versions: 5

Compression:

Stored size: 1.17 KB

Contents

# == Schema Information
#
# Table name: users
#
#  id                  :integer(4)      not null, primary key
#  login               :string(255)
#  email               :string(255)
#  first_name          :string(255)
#  last_name           :string(255)
#  crypted_password    :string(255)
#  password_salt       :string(255)
#  persistence_token   :string(255)
#  single_access_token :string(255)
#  perishable_token    :string(255)
#  login_count         :integer(4)      default(0), not null
#  failed_login_count  :integer(4)      default(0), not null
#  last_request_at     :datetime
#  last_login_at       :datetime
#  current_login_at    :datetime
#  current_login_ip    :string(255)
#  last_login_ip       :string(255)
#  terms_of_service    :boolean(1)      not null
#  time_zone           :string(255)     default("UTC")
#  disabled_at         :datetime
#  activated_at        :datetime
#  created_at          :datetime
#  updated_at          :datetime
#

require File.dirname(__FILE__) + '/../test_helper'

class UserTest < ActiveSupport::TestCase
  context "feeds" do
    setup do
      @user = Factory(:user)
    end
    should_have_many :feed_parents
    should_have_many :feeds
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
muck-raker-0.1.31 test/rails_root/test/unit/user_test.rb
muck-raker-0.1.30 test/rails_root/test/unit/user_test.rb
muck-raker-0.1.29 test/rails_root/test/unit/user_test.rb
muck-raker-0.1.28 test/rails_root/test/unit/user_test.rb
muck-raker-0.1.27 test/rails_root/test/unit/user_test.rb