class Jeweler::Generator

def feature_support_extend

def feature_support_extend
  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::Assertions'
  when :rspec
    nil
  when :micronaut
    'Micronaut::Matchers'
  else
    raise "Don't know what to extend for #{testing_framework}"
  end
end