TokiTranslate/spec/requests/dictionary_spec.rb
2023-10-13 19:42:17 -04:00

11 lines
229 B
Ruby

require 'rails_helper'
RSpec.describe "Dictionary", type: :request do
describe "GET /index" do
it 'renders the index template' do
get "/dictionary"
expect(response).to render_template(:index)
end
end
end