mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
10 lines
208 B
Ruby
10 lines
208 B
Ruby
require 'rails_helper'
|
|
require 'support/devise'
|
|
|
|
RSpec.describe MainController, type: :controller do
|
|
describe 'GET #index' do
|
|
before { get :index }
|
|
it { is_expected.to respond_with(200) }
|
|
end
|
|
end
|