Update gitignore
This commit is contained in:
10
spec/actions/trips/index_spec.rb
Normal file
10
spec/actions/trips/index_spec.rb
Normal file
@@ -0,0 +1,10 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
RSpec.describe Adamantium::Actions::Trips::Index do
|
||||
let(:params) { Hash[] }
|
||||
|
||||
it "works" do
|
||||
response = subject.call(params)
|
||||
expect(response).to be_successful
|
||||
end
|
||||
end
|
10
spec/actions/trips/show_spec.rb
Normal file
10
spec/actions/trips/show_spec.rb
Normal file
@@ -0,0 +1,10 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
RSpec.describe Adamantium::Actions::Trips::Show do
|
||||
let(:params) { Hash[] }
|
||||
|
||||
it "works" do
|
||||
response = subject.call(params)
|
||||
expect(response).to be_successful
|
||||
end
|
||||
end
|
5
spec/slices/admin/action_spec.rb
Normal file
5
spec/slices/admin/action_spec.rb
Normal file
@@ -0,0 +1,5 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
RSpec.describe Admin::Action do
|
||||
xit "works"
|
||||
end
|
0
spec/slices/admin/actions/.keep
Normal file
0
spec/slices/admin/actions/.keep
Normal file
10
spec/slices/admin/actions/trips/create_spec.rb
Normal file
10
spec/slices/admin/actions/trips/create_spec.rb
Normal file
@@ -0,0 +1,10 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
RSpec.describe Admin::Actions::Trips::Create do
|
||||
let(:params) { Hash[] }
|
||||
|
||||
it "works" do
|
||||
response = subject.call(params)
|
||||
expect(response).to be_successful
|
||||
end
|
||||
end
|
10
spec/slices/admin/actions/trips/index_spec.rb
Normal file
10
spec/slices/admin/actions/trips/index_spec.rb
Normal file
@@ -0,0 +1,10 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
RSpec.describe Admin::Actions::Trips::Index do
|
||||
let(:params) { Hash[] }
|
||||
|
||||
it "works" do
|
||||
response = subject.call(params)
|
||||
expect(response).to be_successful
|
||||
end
|
||||
end
|
10
spec/slices/admin/actions/trips/new_spec.rb
Normal file
10
spec/slices/admin/actions/trips/new_spec.rb
Normal file
@@ -0,0 +1,10 @@
|
||||
# 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
|
10
spec/slices/admin/actions/trips/show_spec.rb
Normal file
10
spec/slices/admin/actions/trips/show_spec.rb
Normal file
@@ -0,0 +1,10 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
RSpec.describe Admin::Actions::Trips::Show do
|
||||
let(:params) { Hash[] }
|
||||
|
||||
it "works" do
|
||||
response = subject.call(params)
|
||||
expect(response).to be_successful
|
||||
end
|
||||
end
|
10
spec/slices/admin/actions/trips/update_spec.rb
Normal file
10
spec/slices/admin/actions/trips/update_spec.rb
Normal file
@@ -0,0 +1,10 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
RSpec.describe Admin::Actions::Trips::Update do
|
||||
let(:params) { Hash[] }
|
||||
|
||||
it "works" do
|
||||
response = subject.call(params)
|
||||
expect(response).to be_successful
|
||||
end
|
||||
end
|
Reference in New Issue
Block a user