以下代码来自Ruby on Rails。
...some code here...
unless ActionController::Base < ActionController::Testing
ActionController::Base.class_eval do
include ActionController::Testing
end
end
... some code here...
ActionController::Base < ActionController::Testing
在这种情况下的含义是什么?
答案 0 :(得分:5)
它是继承的测试并返回一个布尔值。
如果以下陈述为真,则表示左侧是右侧的子类。
ActionController::Base < ActionController::Testing
有关详细信息,请参阅documentation。