Sha256: 1b84165cc0d3d38fed7663f4053956d6d25a1a17ff3ccfe5695168574990a374

Contents?: true

Size: 495 Bytes

Versions: 1

Compression:

Stored size: 495 Bytes

Contents

FILE_NAME = ENV["TESTEE"] || "solution.rb"
require_relative FILE_NAME

TEST_CASES = [
  {
    input: [],
    output: 0
  },
  {
    input: [],
    output: 0
  }
].freeze

RSpec.describe FILE_NAME do
  context TRAIN_OF_THOUGHT do
    TEST_CASES.each do |tc|
      case tc
      in { input: input, output: output}
        pending "TODO: assert solution output with expected"
        # it "#{input}  =>  #{output}" do
        #   expect(___).to eq(output)
        # end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
katagen-1.0.1 lib/katagen/templates/solution_spec.rb.erb