Sha256: e695dd06d9c0305ac3e8e895e5d82e9fa8e115471e5907c20142fe2307e8b7f1
Contents?: true
Size: 648 Bytes
Versions: 2
Compression:
Stored size: 648 Bytes
Contents
Feature: Simple Reporting I want to be able to build a report Scenario: Help can be printed When I run bin/damsi with "-h" Then Exit code is zero And Stdout contains "--help" Scenario: Version can be printed When I run bin/damsi with "--version" Then Exit code is zero Scenario: Simple DFG Given I have a "simple.dfg" file with content: """ send :sum, a:10 send :sum, b:15 recv :sum do |a, b| send :mul, x: (a+b) end recv :mul do |x| send :out, x: x end """ When I run bin/damsi simple.dfg Then Stdout contains "mul called with [25]" And Exit code is zero
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
damsi-0.0.2 | features/cli.feature |
damsi-0.0.1 | features/cli.feature |