Skip to content

Instantly share code, notes, and snippets.

@brandon-beacher
Created August 27, 2012 17:02
Show Gist options
  • Save brandon-beacher/3490395 to your computer and use it in GitHub Desktop.
Save brandon-beacher/3490395 to your computer and use it in GitHub Desktop.
namespace :test do
namespace :tddium do
desc "tddium"
Rake::TestTask.new(:all => "db:test:prepare") do |t|
t.libs << "test"
t.test_files = Rake::FileList[
'test/integration/pathway_integration_test.rb',
'test/integration/activity_admin_integration_test.rb',
'test/integration/school_integration_test.rb',
'test/integration/student_csv_upload_integration_test.rb',
'test/integration/placement_test_introduction_integration_test.rb',
'test/unit/school_csv_importer_test.rb',
'test/integration/classroom_standards_report_integration_test.rb',
'test/unit/activity_exclusion_test.rb',
'test/integration/enrollment_pre_quiz_activity_declination_integration_test.rb',
'test/unit/activity_test.rb',
'test/unit/district_test.rb',
'test/unit/helpers/translations_helper_test.rb',
'test/unit/lesson_test.rb',
'test/integration/school_admin_integration_test.rb',
'test/unit/school_search_test.rb',
'test/integration/placement_test_item_integration_test.rb'
]
t.verbose = true
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment