Add cucumber scenario for layout CLI option

This commit is contained in:
Thibault Jouan 2015-04-18 03:26:24 +00:00
parent 1e2d423552
commit 1cb7086713

View File

@ -0,0 +1,11 @@
Feature: layout CLI option
Scenario: specifies the layout class
Given a file named layout.rb with:
"""
class MyLayout
def register _; end
end
"""
When I run uhwm with option -v -r./layout -l MyLayout
Then the output must match /layout.+mylayout/i