Skip to content

Commit

Permalink
chore: add fixture for autodiscovery tests
Browse files Browse the repository at this point in the history
  • Loading branch information
orsagie committed Dec 11, 2019
1 parent 321ac39 commit 01254a1
Show file tree
Hide file tree
Showing 63 changed files with 6,447 additions and 0 deletions.
6 changes: 6 additions & 0 deletions test/fixtures/mono-repo-project/Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
source :rubygems

gem "sinatra"
gem "haml"
gem "httparty"
gem "actionpack"
71 changes: 71 additions & 0 deletions test/fixtures/mono-repo-project/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
GEM
remote: http://rubygems.org/
specs:
actionpack (4.2.5)
actionview (= 4.2.5)
activesupport (= 4.2.5)
rack (~> 1.6)
rack-test (~> 0.6.2)
rails-dom-testing (~> 1.0, >= 1.0.5)
rails-html-sanitizer (~> 1.0, >= 1.0.2)
actionview (4.2.5)
activesupport (= 4.2.5)
builder (~> 3.1)
erubis (~> 2.7.0)
rails-dom-testing (~> 1.0, >= 1.0.5)
rails-html-sanitizer (~> 1.0, >= 1.0.2)
activesupport (4.2.5)
i18n (~> 0.7)
json (~> 1.7, >= 1.7.7)
minitest (~> 5.1)
thread_safe (~> 0.3, >= 0.3.4)
tzinfo (~> 1.1)
builder (3.2.2)
erubis (2.7.0)
haml (3.1.4)
httparty (0.8.1)
multi_json
multi_xml
i18n (0.7.0)
json (1.8.3)
loofah (2.0.3)
nokogiri (>= 1.5.9)
mini_portile2 (2.1.0)
minitest (5.9.1)
multi_json (1.12.1)
multi_xml (0.5.5)
nokogiri (1.6.8.1)
mini_portile2 (~> 2.1.0)
rack (1.6.4)
rack-protection (1.5.3)
rack
rack-test (0.6.3)
rack (>= 1.0)
rails-deprecated_sanitizer (1.0.3)
activesupport (>= 4.2.0.alpha)
rails-dom-testing (1.0.7)
activesupport (>= 4.2.0.beta, < 5.0)
nokogiri (~> 1.6.0)
rails-deprecated_sanitizer (>= 1.0.1)
rails-html-sanitizer (1.0.3)
loofah (~> 2.0)
sinatra (1.3.2)
rack (~> 1.3, >= 1.3.6)
rack-protection (~> 1.2)
tilt (~> 1.3, >= 1.3.3)
thread_safe (0.3.5)
tilt (1.4.1)
tzinfo (1.2.2)
thread_safe (~> 0.1)

PLATFORMS
ruby

DEPENDENCIES
actionpack
haml
httparty
sinatra

BUNDLED WITH
1.13.2
5 changes: 5 additions & 0 deletions test/fixtures/mono-repo-project/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Simple Monorepo

This repository contains a number of different projects, both at the root and in directories.

It is used as a simple test fixture for monorepo and multi-language support on [Snyk.io](https://snyk.io). As such, each "project" is merely the files needed to describe dependencies.
5 changes: 5 additions & 0 deletions test/fixtures/mono-repo-project/bundler-app/Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
source "https://rubygems.org"

gem "rack-cache", "~> 1.1.0"
gem "rack", "~> 1.6.2"
gem "rack-protection", "~> 1.5.0"
19 changes: 19 additions & 0 deletions test/fixtures/mono-repo-project/bundler-app/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
GEM
remote: https://rubygems.org/
specs:
rack (1.6.5)
rack-cache (1.1)
rack (>= 0.4)
rack-protection (1.5.3)
rack

PLATFORMS
ruby

DEPENDENCIES
rack (~> 1.6.2)
rack-cache (~> 1.1.0)
rack-protection (~> 1.5.0)

BUNDLED WITH
1.14.3

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

203 changes: 203 additions & 0 deletions test/fixtures/mono-repo-project/node_modules/node-uuid/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 01254a1

Please sign in to comment.