##// END OF EJS Templates
Merged r6030 from trunk....
Merged r6030 from trunk. PDF: Import DejaVu fonts. http://rfpdf.googlecode.com/files/DejaVu.zip Sep. 2007 fils size 3,685,721 md5sum: 54274d105b74f817d649035fc1541d8a rename files. * DejaVuSans.rb to dejavusans.rb * DejaVuSansb.rb to dejavusansb.rb * DejaVuSansi.rb to dejavusansi.rb git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/1.2-stable@6032 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r2773:7b0cb6aba871
r5912:bacc44feab8f
Show More
testing_test.rb
18 lines | 557 B | text/x-ruby | RubyLexer
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