Auf GitHub ansehen
 (0 Kommentare) (0 Reaktionen) (0 zugewiesene Personen)Julia (0 Forks)auto 404
enhancementgood first issue

Repository-Metriken

Stars
 (1 Star)
PR-Merge-Metriken
 (Keine gemergten PRs in 30 T)

Beschreibung

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

Contributor Guide