2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:50:21 +08:00
discourse/spec/components/current_user_spec.rb
2013-02-26 07:31:35 +03:00

15 lines
404 B
Ruby

require 'spec_helper'
require_dependency 'current_user'
describe CurrentUser do
it "allows us to lookup a user from our environment" do
token = EmailToken.generate_token
user = Fabricate.build(:user)
User.expects(:where).returns([user])
CurrentUser.lookup_from_env("HTTP_COOKIE" => "_t=#{token};").should == user
end
# it "allows us to lookup a user from our app" do
# end
end