Sha256: 95d165dbbd9b5d889912daac4fec4b0fd2e38a43d09912900a752900936e3ad5
Contents?: true
Size: 1.16 KB
Versions: 4
Compression:
Stored size: 1.16 KB
Contents
Feature: Calling genomer plugins in a genomer project In order to use third-party genomer plugins A user can specify genomer plugins in a Gemfile And call these plugins on the command line @disable-bundler Scenario: Calling a genomer plugin with no command Given I run the genomer command with the arguments "init project" And I cd to "project" And I overwrite "Gemfile" with: """ gem 'genomer-plugin-simple', :path => '../../../genomer-plugin-simple' """ When I run the genomer command with the arguments "simple" Then the exit status should be 0 And the output should contain: """ Plugin "simple" called """ @disable-bundler Scenario: Calling a genomer plugin with a command Given I run the genomer command with the arguments "init project" And I cd to "project" And I overwrite "Gemfile" with: """ gem 'genomer-plugin-simple', :path => '../../../genomer-plugin-simple' """ When I run the genomer command with the arguments "simple echo some words" Then the exit status should be 0 And the output should contain: """ Echo: some words """
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
genomer-0.0.10 | features/cli/plugins.feature |
genomer-0.0.9 | features/cli/plugins.feature |
genomer-0.0.8 | features/cli/plugins.feature |
genomer-0.0.7 | features/cli/plugins.feature |