Mercurial > hg > soundsoftware-site
view .svn/pristine/78/784c9b0d2d8855db8c97b7e039fb2ee4a682fc0e.svn-base @ 1013:b98f60a6d231 live
Avoid crashing out with weird event types that don't give us a proper author record
author | Chris Cannam |
---|---|
date | Mon, 12 Nov 2012 14:55:11 +0000 |
parents | cbb26bc654de |
children |
line wrap: on
line source
require File.dirname(__FILE__) + '/../test_helper' class TestingTest < Test::Unit::TestCase def setup Engines::Testing.set_fixture_path @filename = File.join(Engines::Testing.temporary_fixtures_directory, 'testing_fixtures.yml') File.delete(@filename) if File.exists?(@filename) end def teardown File.delete(@filename) if File.exists?(@filename) end def test_should_copy_fixtures_files_to_tmp_directory assert !File.exists?(@filename) Engines::Testing.setup_plugin_fixtures assert File.exists?(@filename) end end