class Graffiti::SquishAssertValue
Attributes
value[R]
Public Class Methods
new(value, new, updated)
click to toggle source
# File lib/graffiti/squish.rb, line 461 def initialize(value, new, updated) @value = value @new = new @updated = updated end
Public Instance Methods
new?()
click to toggle source
true if node was inserted into resource during value generation and a corresponding record should be inserted into an internal resource table later
# File lib/graffiti/squish.rb, line 473 def new? @new end
updated?()
click to toggle source
true if the node value is set in the UPDATE section of the Squish statement
# File lib/graffiti/squish.rb, line 479 def updated? @updated end