##// END OF EJS Templates
Swedish translation updated by Nicklas Holm (#10750)...
Swedish translation updated by Nicklas Holm (#10750) git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9523 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r2773:7b0cb6aba871
r9344:34e20c4373b7
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