11 lines
229 B
Ruby
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
|