10 lines
212 B
Ruby
10 lines
212 B
Ruby
module Stubber
|
|
def self.stub_providers!
|
|
Dir["tests/stubs/providers/*.rb"].each {|file| require file }
|
|
end
|
|
|
|
def self.stub_models!
|
|
Dir["tests/stubs/models/*.rb"].each {|file| require file }
|
|
end
|
|
end
|