在 GitHub 查看
 (0 留言) (0 反應) (0 負責人)Julia (0 fork)auto 404
enhancementgood first issue

倉庫指標

Star
 (1 star)
PR 合併指標
 (30 天內沒有已合併 PR)

描述

The drama list should be implemented as a list of <: AbstractDrama objects, not a list of functions.

Then we have two methods that should be implemented for all AbstractDrama subtypes:

struct MyDramaType <: AbstractDrama
  ...
end

check_drama(source::MyDramaType, context::DramaContext) = # not sure what it should return

should_check_drama(source::MyDramaType, context::DramaContext) = true / false # depending on whether the check_drama function should run. This can be used to skip tests

貢獻者指南