Class: Ldpath::LanguageTest
- Inherits:
-
TestSelector
- Object
- Selector
- TestSelector
- Ldpath::LanguageTest
- Defined in:
- lib/ldpath/tests.rb
Instance Attribute Summary collapse
-
#lang ⇒ Object
readonly
Returns the value of attribute lang.
Attributes inherited from TestSelector
Instance Method Summary collapse
- #evaluate(_program, uri, _context) ⇒ Object
-
#initialize(lang) ⇒ LanguageTest
constructor
A new instance of LanguageTest.
Methods inherited from Selector
Constructor Details
#initialize(lang) ⇒ LanguageTest
Returns a new instance of LanguageTest.
22 23 24 |
# File 'lib/ldpath/tests.rb', line 22 def initialize(lang) @lang = lang end |
Instance Attribute Details
#lang ⇒ Object (readonly)
Returns the value of attribute lang.
21 22 23 |
# File 'lib/ldpath/tests.rb', line 21 def lang @lang end |
Instance Method Details
#evaluate(_program, uri, _context) ⇒ Object
26 27 28 29 30 |
# File 'lib/ldpath/tests.rb', line 26 def evaluate(_program, uri, _context) return unless uri.literal? uri if (lang == "none" && !uri.has_language?) || uri.language == lang end |