class Tset::Test
Contains the translated test code and the category it belongs to
@param code [String] The actual test code translated from testable @param category [String] A category used for describe block
Attributes
category[R]
code[R]
Public Class Methods
new(code, category)
click to toggle source
# File lib/tset/test.rb, line 12 def initialize(code, category) @code = code @category = category end