is there a listing of the Spec::Runner configuration options
somewhere?
I’m looking for a document (code is ok) that lists all the available
options and their purpose.
example,
I can see from my code that these exist…
Spec::Runner.configure do |config|
config.use_transactional_fixtures = true
config.use_instantiated_fixtures = false
config.fixture_path = Rails.root + ‘/spec/fixtures/’
end
but I’m curious to see what else is available.
I’ve googled and searched in rdoc but I can’t find even these options
listed.
thanks