circleci
400 of 9819 relevant lines covered (4.07%)
0.04 hits per line
1 |
|
× |
2 |
# frozen_string_literal: true
|
× |
3 |
module LinkedData |
× |
4 |
class LinkedDateRange < LinkedResource |
× |
5 |
def local_fields |
× |
6 |
{ |
× |
7 |
"@type" => "edm:TimeSpan", |
× |
8 |
"begin" => resource.start,
|
× |
9 |
"end" => resource.end
|
× |
10 |
} |
× |
11 |
end
|
× |
12 |
|
× |
13 |
def basic_jsonld |
× |
14 |
{} |
× |
15 |
end
|
× |
16 |
|
× |
17 |
def without_context |
× |
18 |
as_jsonld.except("@context")
|
× |
19 |
end
|
× |
20 |
end
|
× |
21 |
end
|
× |