Initial commit - fresh start

This commit is contained in:
Ubuntu
2025-10-27 04:04:54 +00:00
parent a659275fb6
commit 52ab5d1005
265 changed files with 188424 additions and 64 deletions

View File

@@ -0,0 +1,15 @@
require 'rails_helper'
RSpec.describe Spree::HomeController, type: :controller do
describe 'GET #index' do
subject { get :index }
it 'returns a successful response' do
expect(subject).to be_successful
end
it 'renders the index template' do
expect(subject).to render_template(:index)
end
end
end