Skip to content

Files

Latest commit

 

History

History
22 lines (14 loc) · 451 Bytes

Packaging-BundlerSetupInTests.md

File metadata and controls

22 lines (14 loc) · 451 Bytes

Pattern: Use of bundler/setup in test

Issue: -

Description

Flags the require "bundler/setup" calls if they're made from inside the tests directory.

Examples

# bad
require "foo"
require "bundler/setup"

# good
require "foo"

Further Reading