Cover for src/bumper.cr


Lines
3 / 3 (100.00%)

1
def bumper_item(_type : ::Char.class)
2
26
  '\u{2060}'
3
end
4

        
5
def bumper_item(_type : ::String.class)
6
24
  "\u{2060}"
7
end
8

        
9
def bumper_item(_type : T?.class) forall T
10
2
  nil
11
end
12