Sha256: cf7080e759a680a7a1d334936b27f7e27ae376d77f3b7ab9ac7e6fd643c90787
Contents?: true
Size: 1.38 KB
Versions: 45
Compression:
Stored size: 1.38 KB
Contents
Feature: Move files Scenario: Move one path to another Given a fixture app "large-build-app" And a file named "config.rb" with: """ move_file "/static.html", "/static2.html" """ And the Server is running at "large-build-app" When I go to "/static.html" Then I should see 'Not Found' When I go to "/static2.html" Then I should see 'Static, no code!' Scenario: Move one path to another with directory indexes Given a fixture app "large-build-app" And a file named "config.rb" with: """ activate :directory_indexes move_file "/static.html", "/static2.html" """ And the Server is running at "large-build-app" When I go to "/static.html" Then I should see 'Not Found' When I go to "/static/index.html" Then I should see 'Not Found' When I go to "/static2.html" Then I should see 'Static, no code!' Scenario: Move one path to another with directory indexes (using dest path) Given a fixture app "large-build-app" And a file named "config.rb" with: """ activate :directory_indexes move_file "/static/index.html", "/static2.html" """ And the Server is running at "large-build-app" When I go to "/static.html" Then I should see 'Not Found' When I go to "/static/index.html" Then I should see 'Not Found' When I go to "/static2.html" Then I should see 'Static, no code!'
Version data entries
45 entries across 45 versions & 3 rubygems