features/api/filesystem/does_exist.feature in aruba-0.9.0.pre vs features/api/filesystem/does_exist.feature in aruba-0.9.0.pre2

- old
+ new

@@ -26,11 +26,11 @@ Background: Given I use a fixture named "cli-app" Scenario: Is file or directory and exists Given a file named "spec/create_directory_spec.rb" with: - """ + """ruby require 'spec_helper' RSpec.describe 'Check if directory and file exist', :type => :aruba do let(:directory) { 'dir.d' } let(:file) { 'file.txt' } @@ -45,10 +45,10 @@ When I run `rspec` Then the specs should all pass Scenario: Is file or directory and does not exist Given a file named "spec/create_directory_spec.rb" with: - """ + """ruby require 'spec_helper' RSpec.describe 'Check if directory and file exist', :type => :aruba do let(:directory) { 'dir.d' } let(:file) { 'file.txt' }