2023-10-13 23:42:17 +00:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe "Root path", type: :request do
|
|
|
|
describe "GET /" do
|
|
|
|
it "works! (now write some real specs)" do
|
|
|
|
get root_path
|
|
|
|
expect(response).to have_http_status(200)
|
|
|
|
end
|
2023-10-22 19:03:45 +00:00
|
|
|
|
|
|
|
it "should have a link to the dictionary" do
|
|
|
|
get root_path
|
|
|
|
expect(response.body).to have_selector(%(a[href="#{dictionary_index_path}"]))
|
|
|
|
end
|
2023-10-13 23:42:17 +00:00
|
|
|
end
|
|
|
|
|
2023-12-07 16:31:54 +00:00
|
|
|
it "should have a language drop-down" do
|
|
|
|
get root_path
|
|
|
|
expect(response.body).to have_field("active_language_id")
|
2023-10-13 23:42:17 +00:00
|
|
|
end
|
|
|
|
end
|