Created
July 30, 2017 00:13
-
-
Save AndyObtiva/652bab9243a866f733894e20693edf0f to your computer and use it in GitHub Desktop.
Ultra Light Wizard spec
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
| describe UltraLightWizard do | |
| let(:app_rails_ref) {File.expand_path(File.join(__FILE__, '..', '..', '..', 'fixtures', 'ref_rails_app'))} | |
| let(:app_rails_copy) {app_rails_ref.sub('ref', 'copy')} | |
| before do | |
| FileUtils.rm_rf app_rails_copy | |
| FileUtils.cp_r app_rails_ref, app_rails_copy | |
| end | |
| after do | |
| FileUtils.rm_rf app_rails_copy | |
| end | |
| # ... more to go here | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment