Newer
Older
# Copyright (c) 2010, Disapora Inc. This file is
# licensed under the Affero General Public License version 3. See
# the COPYRIGHT file.
Daniel Vincent Grippi
a validé
require File.dirname(__FILE__) + '/../spec_helper'
describe PeopleController do
render_views
before do
sign_in :user, @user
end
it "index should yield search results for substring of person name" do
pending "wait, what???"
get :index, :q => "Eu"
end
it 'should go to the current_user show page' do
get :show, :id => @user.person.id
end