github
0 of 18 new or added lines in 4 files covered. (0.0%)
3922 existing lines in 105 files now uncovered.0 of 4086 relevant lines covered (0.0%)
0.0 hits per line
1 |
# frozen_string_literal: true
|
|
2 |
|
|
UNCOV
3
|
module Import |
× |
UNCOV
4
|
module Recording |
× |
UNCOV
5
|
class TooShortError < StandardError |
× |
6 |
|
|
UNCOV
7
|
attr_reader :recording
|
× |
8 |
|
|
UNCOV
9
|
def initialize(recording) |
× |
UNCOV
10
|
super("Recording #{recording.path} has an audio duration of " \ |
× |
UNCOV
11
|
"#{recording.audio_duration}s, where #{recording.specified_duration}s were expected.")
|
× |
UNCOV
12
|
@recording = recording
|
× |
UNCOV
13
|
end
|
× |
14 |
|
|
UNCOV
15
|
end
|
× |
UNCOV
16
|
end
|
× |
UNCOV
17
|
end
|
× |