11 lines
203 B
Ruby
11 lines
203 B
Ruby
# frozen_string_literal: true
|
|
|
|
RSpec.describe Admin::Actions::Trips::New do
|
|
let(:params) { Hash[] }
|
|
|
|
it "works" do
|
|
response = subject.call(params)
|
|
expect(response).to be_successful
|
|
end
|
|
end
|