test/rails_root/test/unit/user_test.rb in muck-commerce-0.1.9 vs test/rails_root/test/unit/user_test.rb in muck-commerce-0.2.0
- old
+ new
@@ -1,5 +1,37 @@
+# == 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) not null
+# single_access_token :string(255) not null
+# perishable_token :string(255) not null
+# login_count :integer(4) default(0), not null
+# failed_login_count :integer(4) default(0), not null
+# last_request_at :datetime
+# current_login_at :datetime
+# last_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
+# created_at :datetime
+# activated_at :datetime
+# updated_at :datetime
+# identity_url :string(255)
+# url_key :string(255)
+# access_code_id :integer(4)
+#
+
require File.dirname(__FILE__) + '/../test_helper'
class UserTest < ActiveSupport::TestCase
context 'A user instance that acts_as_muck_commerce_user' do
@@ -66,6 +98,6 @@
end
end
end
end
-end
\ No newline at end of file
+end