require 'rails_helper'

RSpec.describe ChangelogsController, type: :controller do
	sign_in_admin

	describe "GET #index" do
		it "returns http success" do
			get :index
			expect(response).to have_http_status(:success)
			expect(assigns(:arquivo_hash)).not_to be_nil
		end
	end

end
