Sha256: bee7d6eae78c4401d3611073274da369bf281fcba05e046e837304d2fa88588d

Contents?: true

Size: 375 Bytes

Versions: 2

Compression:

Stored size: 375 Bytes

Contents

module Tset
  #
  # 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
  #
  class Test

    attr_reader :code, :category

    def initialize(code, category)
      @code = code
      @category = category
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
tset-0.0.2 lib/tset/test.rb
tset-0.0.1 lib/tset/test.rb