Code generator for C++ from YAML to generate network protocol parsers
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
192 B

преди 4 години
преди 4 години
преди 4 години
  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