9 lines
195 B
Ruby
9 lines
195 B
Ruby
require 'spec_helper'
|
|
|
|
RSpec.configure do |config|
|
|
config.include RSpec::Fire
|
|
|
|
config.include UnitExampleGroup, :type => :unit, :example_group => {
|
|
:file_path => /\bspec\/unit\//
|
|
}
|
|
end
|