fix tests
This commit is contained in:
@@ -15,7 +15,7 @@ Post.where("created_at > '2013-02-01'").find_each do |post|
|
|||||||
post.update_column(:tag_count_character, post.tag_count_character)
|
post.update_column(:tag_count_character, post.tag_count_character)
|
||||||
end
|
end
|
||||||
|
|
||||||
PoolVersion.where("post_ids like '% 6 %'").find_each do |pool_version|
|
PoolVersion.where("post_ids like '% 4 %' and post_ids like '% 8 %' and post_ids like '% 9 %' and post_ids like '% 11 %'").find_each do |pool_version|
|
||||||
cleaned_post_ids = pool_version.post_ids.scan(/(\d+) \d+/).join(" ")
|
cleaned_post_ids = pool_version.post_ids.scan(/(\d+) \d+/).join(" ")
|
||||||
pool_version.update_column(:post_ids, cleaned_post_ids)
|
pool_version.update_column(:post_ids, cleaned_post_ids)
|
||||||
end; true
|
end; true
|
||||||
|
|||||||
@@ -44,7 +44,7 @@ class PostsControllerTest < ActionController::TestCase
|
|||||||
@basic_auth_string = "Basic #{::Base64.encode64("#{@user.name}:badpassword")}"
|
@basic_auth_string = "Basic #{::Base64.encode64("#{@user.name}:badpassword")}"
|
||||||
@request.env['HTTP_AUTHORIZATION'] = @basic_auth_string
|
@request.env['HTTP_AUTHORIZATION'] = @basic_auth_string
|
||||||
get :index, {:format => "json"}
|
get :index, {:format => "json"}
|
||||||
assert_response 401
|
assert_response 403
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -56,7 +56,7 @@ class PostsControllerTest < ActionController::TestCase
|
|||||||
|
|
||||||
should "fail for password mismatches" do
|
should "fail for password mismatches" do
|
||||||
get :index, {:format => "json", :login => @user.name, :api_key => "bad"}
|
get :index, {:format => "json", :login => @user.name, :api_key => "bad"}
|
||||||
assert_response 401
|
assert_response 403
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -68,7 +68,7 @@ class PostsControllerTest < ActionController::TestCase
|
|||||||
|
|
||||||
should "fail for password mismatches" do
|
should "fail for password mismatches" do
|
||||||
get :index, {:format => "json", :login => @user.name, :password_hash => "bad"}
|
get :index, {:format => "json", :login => @user.name, :password_hash => "bad"}
|
||||||
assert_response 401
|
assert_response 403
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user