2017-07-23 11:36:41 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-08-06 12:50:17 -04:00
|
|
|
require "abstract_unit"
|
2008-04-19 14:06:57 -04:00
|
|
|
|
|
|
|
module PeopleHelper
|
|
|
|
def title(text)
|
|
|
|
content_tag(:h1, text)
|
|
|
|
end
|
|
|
|
|
|
|
|
def homepage_path
|
|
|
|
people_path
|
|
|
|
end
|
|
|
|
|
|
|
|
def homepage_url
|
|
|
|
people_url
|
|
|
|
end
|
|
|
|
|
|
|
|
def link_to_person(person)
|
|
|
|
link_to person.name, person
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class PeopleHelperTest < ActionView::TestCase
|
|
|
|
def test_title
|
|
|
|
assert_equal "<h1>Ruby on Rails</h1>", title("Ruby on Rails")
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_homepage_path
|
2009-10-04 00:31:38 -04:00
|
|
|
with_test_route_set do
|
|
|
|
assert_equal "/people", homepage_path
|
|
|
|
end
|
2008-04-19 14:06:57 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_homepage_url
|
2009-10-04 00:31:38 -04:00
|
|
|
with_test_route_set do
|
|
|
|
assert_equal "http://test.host/people", homepage_url
|
|
|
|
end
|
2008-04-19 14:06:57 -04:00
|
|
|
end
|
|
|
|
|
2009-02-03 21:25:37 -05:00
|
|
|
def test_link_to_person
|
2009-10-04 00:31:38 -04:00
|
|
|
with_test_route_set do
|
2014-05-01 19:03:26 -04:00
|
|
|
person = Struct.new(:name) {
|
|
|
|
extend ActiveModel::Naming
|
2014-05-05 20:23:10 -04:00
|
|
|
def to_model; self; end
|
|
|
|
def persisted?; true; end
|
2016-08-06 12:50:17 -04:00
|
|
|
def self.name; "Minitest::Mock"; end
|
2014-05-01 19:03:26 -04:00
|
|
|
}.new "David"
|
|
|
|
|
|
|
|
the_model = nil
|
|
|
|
extend Module.new {
|
2015-08-22 00:03:53 -04:00
|
|
|
define_method(:minitest_mock_path) { |model, *args|
|
2014-05-01 19:03:26 -04:00
|
|
|
the_model = model
|
|
|
|
"/people/1"
|
|
|
|
}
|
|
|
|
}
|
2009-10-04 00:31:38 -04:00
|
|
|
assert_equal '<a href="/people/1">David</a>', link_to_person(person)
|
2014-05-01 19:03:26 -04:00
|
|
|
assert_equal person, the_model
|
2009-10-04 00:31:38 -04:00
|
|
|
end
|
2008-04-19 14:06:57 -04:00
|
|
|
end
|
2009-10-04 00:31:38 -04:00
|
|
|
|
|
|
|
private
|
|
|
|
def with_test_route_set
|
|
|
|
with_routing do |set|
|
2010-08-05 09:44:23 -04:00
|
|
|
set.draw do
|
2016-08-06 13:36:34 -04:00
|
|
|
get "people", to: "people#index", as: :people
|
2009-10-04 00:31:38 -04:00
|
|
|
end
|
|
|
|
yield
|
|
|
|
end
|
|
|
|
end
|
2008-04-19 14:06:57 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
class CrazyHelperTest < ActionView::TestCase
|
|
|
|
tests PeopleHelper
|
|
|
|
|
|
|
|
def test_helper_class_can_be_set_manually_not_just_inferred
|
|
|
|
assert_equal PeopleHelper, self.class.helper_class
|
|
|
|
end
|
|
|
|
end
|
2011-10-03 04:05:25 -04:00
|
|
|
|
|
|
|
class CrazySymbolHelperTest < ActionView::TestCase
|
|
|
|
tests :people
|
|
|
|
|
|
|
|
def test_set_helper_class_using_symbol
|
|
|
|
assert_equal PeopleHelper, self.class.helper_class
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class CrazyStringHelperTest < ActionView::TestCase
|
2016-08-06 12:50:17 -04:00
|
|
|
tests "people"
|
2011-10-03 04:05:25 -04:00
|
|
|
|
|
|
|
def test_set_helper_class_using_string
|
|
|
|
assert_equal PeopleHelper, self.class.helper_class
|
|
|
|
end
|
|
|
|
end
|