Added tests for changeset close method.

This commit is contained in:
Matt Amos 2008-11-17 11:59:42 +00:00
parent 98b15bef45
commit 519d402cb2
2 changed files with 35 additions and 18 deletions

View file

@ -48,8 +48,22 @@ class ChangesetControllerTest < ActionController::TestCase
assert_select "osm>changeset[id=#{changeset_id}]", 1
end
##
# test that the user who opened a change can close it
def test_close
# FIXME FIXME FIXME!
basic_authorization "test@openstreetmap.org", "test"
put :close, :id => changesets(:normal_user_first_change).id
assert_response :success
end
##
# test that a different user can't close another user's changeset
def test_close_invalid
basic_authorization "test@example.com", "test"
put :close, :id => changesets(:normal_user_first_change).id
assert_response :conflict
end
##