-
-
Save cherring/726540 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Feature: Generate a new Synapse app | |
lorem ipsum else | |
Scenario: Generate a new synapse app | |
Given I have no synapse app "my/new/app" # Test that there are no files/dirs for the app | |
When I generate a synapse app "my/new/app" # Trigger the app build | |
Then I should have the generated files for "my/new/app" # Test that all the files are there, Use an after hook to get rid of them after |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
When /^ I generate a synapse app "([^"]*)"$/ do |arg1| | |
AppGenerator.create_rails_app arg1 | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment