10 lines
176 B
Ruby
10 lines
176 B
Ruby
require 'rails_helper'
|
|
|
|
module Choice
|
|
RSpec.describe 'ChoiceController', type: :controller do
|
|
it do
|
|
expect(Choice::ChoiceController).to be_truthy
|
|
end
|
|
end
|
|
end
|