Module: Schema::Controls::Comparison::Entry::SomeOtherAttribute::Same
- Defined in:
- lib/schema/controls/comparison/entry.rb
Class Method Summary collapse
- .compare_name ⇒ Object
- .compare_value ⇒ Object
- .control_name ⇒ Object
- .control_value ⇒ Object
- .example ⇒ Object
Class Method Details
.compare_name ⇒ Object
75 76 77 |
# File 'lib/schema/controls/comparison/entry.rb', line 75 def self.compare_name Attribute::Name.some_other_attribute end |
.compare_value ⇒ Object
79 80 81 |
# File 'lib/schema/controls/comparison/entry.rb', line 79 def self.compare_value Attribute::Value.some_other_attribute end |
.control_name ⇒ Object
67 68 69 |
# File 'lib/schema/controls/comparison/entry.rb', line 67 def self.control_name Attribute::Name.some_other_attribute end |
.control_value ⇒ Object
71 72 73 |
# File 'lib/schema/controls/comparison/entry.rb', line 71 def self.control_value Attribute::Value.some_other_attribute end |
.example ⇒ Object
58 59 60 61 62 63 64 65 |
# File 'lib/schema/controls/comparison/entry.rb', line 58 def self.example ::Schema::Compare::Comparison::Entry.new( self.control_name, self.control_value, self.compare_name, self.compare_value ) end |