Skip to content

Commit

Permalink
Move routes to execute multiple specs
Browse files Browse the repository at this point in the history
  • Loading branch information
makicamel committed Sep 16, 2023
1 parent a4541fd commit 67130ec
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
6 changes: 6 additions & 0 deletions spec/fake_app/config/routes.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# frozen_string_literal: true

BulletmarkRepairerTestApp::Application.routes.draw do
resources :multiple_lines, only: [:index]
resources :previous_lines, only: [:index]
end
5 changes: 0 additions & 5 deletions spec/fake_app/fake_app.rb
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
# frozen_string_literal: true

BulletmarkRepairerTestApp::Application.routes.draw do
resources :multiple_lines, only: [:index]
resources :previous_lines, only: [:index]
end

class CreateAllTables < ActiveRecord::Migration[7.0]
def self.up
create_table 'plays' do |t|
Expand Down

0 comments on commit 67130ec

Please sign in to comment.