Project

General

Profile

Defect #26504 ยป issue-26504.diff

Toshi MARUYAMA, 2020-04-08 04:45

View differences:

test/functional/dummy_controller_test.rb
1
# frozen_string_literal: true
2

  
3
require File.expand_path('../../test_helper', __FILE__)
4

  
5
class DummyControllerTest < Redmine::ControllerTest
6
  def test_dummy
7
    assert_equal 1, 2
8
  end
9
end
test/helpers/dummy_helper_test.rb
1
# frozen_string_literal: true
2

  
3
require File.expand_path('../../test_helper', __FILE__)
4

  
5
class DummyHelperTest < Redmine::HelperTest
6
  def test_dummy
7
    assert_equal 1, 2
8
  end
9
end
test/unit/dummy_test.rb
1
# frozen_string_literal: true
2

  
3
require File.expand_path('../../test_helper', __FILE__)
4

  
5
class DummyTest < ActiveSupport::TestCase
6
  def test_dummy
7
    assert_equal 1, 2
8
  end
9
end
    (1-1/1)