class Jeweler::Generator

def feature_support_require

def feature_support_require
  case testing_framework.to_sym
  when :testunit, :shoulda, :bacon # NOTE bacon doesn't really work inside of cucumber
    'test/unit/assertions'
  when :minitest
    'mini/test'
  when :rspec
    'spec/expectations'
  when :micronaut
    'micronaut/expectations'
  else
    raise "Don't know what to require for #{testing_framework}"
  end
end