Feature: Serving assets from a theme As a designer I want to serve files from my theme So that I can bundle any required images with it In order to make using themes simpler Scenario: The asset does not exist Given the asset "foo.txt" does not exist within the theme When I view "/themes/Example%20Theme/foo.txt" Then the page should return a 404 error Scenario: The asset does exist Given the asset "foo.txt" exists within the theme with this content: """ Hello, world! """ When I view "/themes/Example%20Theme/foo.txt" Then the page should load And the page content should be: """ Hello, world! """