class TestCustomUrlHelpers::Article

Attributes

id[R]

Public Class Methods

name() click to toggle source
# File actionpack/test/dispatch/routing/custom_url_helpers_test.rb, line 54
def self.name
  "Article"
end
new(id) click to toggle source
# File actionpack/test/dispatch/routing/custom_url_helpers_test.rb, line 58
def initialize(id)
  @id = id
end