mirror of
https://github.com/internetee/registry.git
synced 2025-06-06 04:37:30 +02:00
14 lines
326 B
Ruby
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
|