2019-11-01 07:23:01 +00:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2020-01-09 07:36:40 +00:00
|
|
|
describe '/widget_tests', type: :request do
|
|
|
|
before do
|
|
|
|
create(:channel_widget)
|
|
|
|
end
|
2019-11-01 07:23:01 +00:00
|
|
|
|
2020-01-09 07:36:40 +00:00
|
|
|
describe 'GET /widget_tests' do
|
2019-11-01 07:23:01 +00:00
|
|
|
it 'renders the page correctly' do
|
2020-01-09 07:36:40 +00:00
|
|
|
get widget_tests_url
|
|
|
|
expect(response).to be_successful
|
2019-11-01 07:23:01 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|