##
# setup oauth keys
def setup
- Object.const_set("ID_KEY", client_applications(:oauth_web_app).key)
- Object.const_set("POTLATCH2_KEY", client_applications(:oauth_web_app).key)
+ Object.const_set("ID_KEY", create(:client_application).key)
+ Object.const_set("POTLATCH2_KEY", create(:client_application).key)
+
+ stub_hostip_requests
end
##
# Test editing a specific note
def test_edit_with_note
user = users(:public_user)
- note = create(:note)
- create(:note_comment, :author_id => user.id)
+ note = create(:note) do |n|
+ n.comments.create(:author_id => user.id)
+ end
get :edit, { :note => note.id }, { :user => user.id }
assert_response :success