internetee-registry/test/helpers/application_helper_test.rb
2021-05-18 14:44:36 +05:00

14 lines
326 B
Ruby

require 'test_helper'
class ApplicationHelperTest < ActionView::TestCase
def test_creator_link
model = contacts(:william)
assert_nothing_raised do
ApplicationController.helpers.creator_link(model)
end
assert_nothing_raised do
ApplicationController.helpers.updator_link(model)
end
end
end