begin
get :read, :id => id
assert_response :not_found, "should get a not found"
- rescue ActionController::RoutingError => ex
+ rescue ActionController::UrlGenerationError => ex
assert_match /No route matches/, ex.to_s
end
end
begin
put :close, :id => id
assert_response :unauthorized, "Shouldn't be able close the non-existant changeset #{id}, when not authorized"
- rescue ActionController::RoutingError => ex
+ rescue ActionController::UrlGenerationError => ex
assert_match /No route matches/, ex.to_s
end
end
begin
put :close, :id => id
assert_response :not_found, "The changeset #{id} doesn't exist, so can't be closed"
- rescue ActionController::RoutingError => ex
+ rescue ActionController::UrlGenerationError => ex
assert_match /No route matches/, ex.to_s
end
end
##
# This should display the last 20 changesets closed.
def test_list
- changesets = Changeset.find(:all, :order => "created_at DESC", :conditions => ['num_changes > 0'], :limit=> 20)
+ changesets = Changeset.where("num_changes > 0").order(:created_at => :desc).limit(20)
assert changesets.size <= 20
get :list, {:format => "html"}
assert_response :success
##
# This should display the last 20 changesets closed.
def test_feed
- changesets = Changeset.find(:all, :order => "created_at DESC", :conditions => ['num_changes > 0'], :limit=> 20)
+ changesets = Changeset.where("num_changes > 0").order(:created_at => :desc).limit(20)
assert changesets.size <= 20
get :feed, {:format => "atom"}
assert_response :success