require File.dirname(__FILE__) + '/../test_helper' class ChocolateDiscoTest < Test::Unit::TestCase context 'bin/chocolate_disco' do should 'have tests' do flunk('TODO') end end context 'ChocolateDisco' do should 'have tests' do flunk('TODO') end ["application/vnd.visio", "application/pdf", "text/html", "text/xml", "application/vnd.ms-excel", "application/vnd.openxmlformats ", "text", "application/rtf", "application/vnd.ms-powerpoint", "application/msword"].each do |mime| should "support #{mime}" do assert(ChocolateDisco.supported?(:mime => mime)) end end # [mime, ...].each do |mime| end end # class ChocolateDiscoTest < Test::Unit::TestCase