Add integration tests to project (#747)
Adds integration tests to the project that's able to run in CI across different ruby versions.
* Adds a Rails 5.2.4.1 app
* Adds a Rails 6.0.2.1 app
Fixes #733
Showing
This diff is collapsed.
Click to expand it.
... | @@ -2,7 +2,7 @@ source 'https://rubygems.org' | ... | @@ -2,7 +2,7 @@ source 'https://rubygems.org' |
ruby '>= 2.2.0' | ruby '>= 2.2.0' | ||
gem 'activerecord', '>= 4.2.5', require: false | gem 'activerecord', '>= 4.2.5', '< 6', require: false | ||
gem 'rake', require: false | gem 'rake', require: false | ||
group :development do | group :development do | ||
... | @@ -31,11 +31,12 @@ group :development, :test do | ... | @@ -31,11 +31,12 @@ group :development, :test do |
platforms :mri, :mingw do | platforms :mri, :mingw do | ||
gem 'pry', require: false | gem 'pry', require: false | ||
gem 'pry-coolline', require: false | gem 'pry-byebug', require: false | ||
end | end | ||
end | end | ||
group :test do | group :test do | ||
gem 'files', require: false | gem 'files', require: false | ||
gem 'git', require: false | |||
gem 'wrong', require: false | gem 'wrong', require: false | ||
end | end |
spec/integration/integration_helper.rb
0 → 100644
spec/integration/rails_5.2.4.1/.gitignore
0 → 100644
spec/integration/rails_5.2.4.1/Gemfile
0 → 100644
spec/integration/rails_5.2.4.1/Gemfile.lock
0 → 100644
spec/integration/rails_5.2.4.1/README.md
0 → 100644
spec/integration/rails_5.2.4.1/Rakefile
0 → 100644
spec/integration/rails_5.2.4.1/bin/bundle
0 → 100755
spec/integration/rails_5.2.4.1/bin/rails
0 → 100755
spec/integration/rails_5.2.4.1/bin/rake
0 → 100755
spec/integration/rails_5.2.4.1/bin/setup
0 → 100755
spec/integration/rails_5.2.4.1/bin/update
0 → 100755
spec/integration/rails_5.2.4.1/bin/yarn
0 → 100755
spec/integration/rails_5.2.4.1/config.ru
0 → 100644
spec/integration/rails_5.2.4.1/db/schema.rb
0 → 100644
spec/integration/rails_5.2.4.1/db/seeds.rb
0 → 100644
spec/integration/rails_5.2.4.1/log/.keep
0 → 100644
spec/integration/rails_5.2.4.1/package.json
0 → 100644
spec/integration/rails_5.2.4.1/storage/.keep
0 → 100644
spec/integration/rails_5.2.4.1/tmp/.keep
0 → 100644
spec/integration/rails_5.2.4.1/vendor/.keep
0 → 100644
spec/integration/rails_5.2.4.1_spec.rb
0 → 100644
spec/integration/rails_6.0.2.1/.gitignore
0 → 100644
spec/integration/rails_6.0.2.1/.keep
0 → 100644
spec/integration/rails_6.0.2.1/.rubocop.yml
0 → 100644
spec/integration/rails_6.0.2.1/Gemfile
0 → 100644
spec/integration/rails_6.0.2.1/Gemfile.lock
0 → 100644
spec/integration/rails_6.0.2.1/README.md
0 → 100644
spec/integration/rails_6.0.2.1/Rakefile
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
spec/integration/rails_6.0.2.1/bin/bundle
0 → 100755
This diff is collapsed.
Click to expand it.
spec/integration/rails_6.0.2.1/bin/rails
0 → 100755
This diff is collapsed.
Click to expand it.
spec/integration/rails_6.0.2.1/bin/rake
0 → 100755
This diff is collapsed.
Click to expand it.
spec/integration/rails_6.0.2.1/bin/setup
0 → 100755
This diff is collapsed.
Click to expand it.
spec/integration/rails_6.0.2.1/config.ru
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
spec/integration/rails_6.0.2.1/db/schema.rb
0 → 100644
This diff is collapsed.
Click to expand it.
spec/integration/rails_6.0.2.1/db/seeds.rb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
spec/integration/rails_6.0.2.1/log/.keep
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
spec/integration/rails_6.0.2.1/storage/.keep
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
spec/integration/rails_6.0.2.1/tmp/.keep
0 → 100644
This diff is collapsed.
Click to expand it.
spec/integration/rails_6.0.2.1/vendor/.keep
0 → 100644
This diff is collapsed.
Click to expand it.
spec/integration/rails_6.0.2.1_spec.rb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
Please
register
or
sign in
to comment