Commit 6505c02ea36919f3ed9f3da78b305ed5c6f9dd4f

Authored by Leandro Santos
1 parent b171a139

api: fixing conflit on merge

app/models/profile.rb
... ... @@ -89,12 +89,12 @@ class Profile < ActiveRecord::Base
89 89 scope :no_templates, {:conditions => {:is_template => false}}
90 90  
91 91 #FIXME make this test
92   - named_scope :newer_than, lambda { |reference_id|
  92 + scope :newer_than, lambda { |reference_id|
93 93 {:conditions => ["profiles.id > #{reference_id}"]}
94 94 }
95 95  
96 96 #FIXME make this test
97   - named_scope :older_than, lambda { |reference_id|
  97 + scope :older_than, lambda { |reference_id|
98 98 {:conditions => ["profiles.id < #{reference_id}"]}
99 99 }
100 100  
... ...
test/unit/person_test.rb
... ... @@ -1524,7 +1524,6 @@ class PersonTest &lt; ActiveSupport::TestCase
1524 1524 end
1525 1525 end
1526 1526  
1527   -<<<<<<< HEAD
1528 1527 should 'have a list of suggested people to be friend' do
1529 1528 person = create_user('person').person
1530 1529 suggested_friend = fast_create(Person)
... ...