class FutoCase
Attributes
bullet_points[RW]
A test case, with a description and associated bullet points. The description won't actually execute code. The associated bullet points will be mapped to ruby commands via “Chizus”. Bullets will in sequence until a newline is encountered.
description[RW]
A test case, with a description and associated bullet points. The description won't actually execute code. The associated bullet points will be mapped to ruby commands via “Chizus”. Bullets will in sequence until a newline is encountered.
Public Class Methods
new(h, b_arr)
click to toggle source
# File lib/futo-spec.rb, line 48 def initialize(h, b_arr) @description = h @bullet_points = b_arr end
Public Instance Methods
to_s()
click to toggle source
# File lib/futo-spec.rb, line 52 def to_s; return @description; end