Code generator for C++ from YAML to generate network protocol parsers
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
192 B

  1. require "./spec_helper"
  2. describe Andrew do
  3. it "generate record.yml" do
  4. File.open("tests/record.yml") do |file|
  5. fg = FileGenerator.from_yaml(file)
  6. end
  7. true.should eq(true)
  8. end
  9. end