class TestObject
Attributes
name[RW]
user_id[RW]
Public Class Methods
new()
click to toggle source
# File lib/lti2_commons/test/test_substitution_support.rb, line 11 def initialize @user_id = 'jt' @name = "john.thomas" @code = @name.reverse end
Public Instance Methods
to_s()
click to toggle source
# File lib/lti2_commons/test/test_substitution_support.rb, line 17 def to_s @user_id end