mirror of
https://github.com/DatabaseCleaner/database_cleaner
synced 2023-03-27 23:22:03 -04:00
39 lines
831 B
Ruby
39 lines
831 B
Ruby
class FeatureRunner
|
|
attr_accessor :orm
|
|
attr_accessor :another_orm
|
|
attr_accessor :multiple_databases
|
|
attr_accessor :strategy
|
|
attr_accessor :exit_status
|
|
attr_accessor :output
|
|
|
|
def strategy
|
|
@strategy || 'truncation'
|
|
end
|
|
|
|
def go(feature)
|
|
full_dir ||= File.expand_path(File.dirname(__FILE__) + "/../../examples/")
|
|
Dir.chdir(full_dir) do
|
|
|
|
|
|
ENV['ORM'] = orm
|
|
ENV['STRATEGY'] = strategy
|
|
|
|
if another_orm
|
|
ENV['ANOTHER_ORM'] = another_orm
|
|
else
|
|
ENV['ANOTHER_ORM'] = nil
|
|
end
|
|
|
|
if multiple_databases
|
|
ENV['MULTIPLE_DBS'] = "true"
|
|
else
|
|
ENV['MULTIPLE_DBS'] = nil
|
|
end
|
|
|
|
self.output = `#{"jruby -S " if defined?(JRUBY_VERSION)}cucumber features/#{feature}.feature`
|
|
|
|
self.exit_status = $?.exitstatus
|
|
end
|
|
end
|
|
|
|
end
|