13 lines
246 B
Ruby
13 lines
246 B
Ruby
require 'rails_helper'
|
|
|
|
module Choice
|
|
RSpec.describe ChoiceController, type: :controller do
|
|
routes { Choice::Engine.routes }
|
|
|
|
it 'responds with ok' do
|
|
post :create
|
|
expect(response).to have_http_status(200)
|
|
end
|
|
end
|
|
end
|