Class: Ldpath::LanguageTest

Inherits:
TestSelector show all
Defined in:
lib/ldpath/tests.rb

Instance Attribute Summary collapse

Attributes inherited from TestSelector

#delegate, #test

Instance Method Summary collapse

Methods inherited from Selector

#loading

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

#langObject (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