compass/features/extensions.feature

38 lines
1.5 KiB
Gherkin
Raw Normal View History

Feature: Extensions
In order to have an open source ecosystem for stylesheets
As a compass user
I can install extensions that others have created
And I can create and publish my own extensions
@listframeworks
Scenario: Extensions directory for stand_alone projects
Given I am using the existing project in test/fixtures/stylesheets/compass
And the "extensions" directory exists
And and I have a fake extension at extensions/testing
When I run: compass frameworks
Then the list of frameworks includes "testing"
@listframeworks
Scenario: Extensions directory for rails projects
2011-04-29 04:36:33 +00:00
Given ruby supports fork
And I'm in a newly created rails project: extension_test_rails_project
2011-11-17 23:40:42 +00:00
And I run: compass init rails
And the "vendor/plugins/compass_extensions" directory exists
And and I have a fake extension at vendor/plugins/compass_extensions/testing
When I run: compass frameworks
Then the list of frameworks includes "testing"
@listframeworks
Scenario: Shared extensions directory
2011-11-17 23:40:42 +00:00
Given the "~/.compass/extensions" directory exists
And and I have a fake extension at ~/.compass/extensions/testing
2011-11-17 23:40:42 +00:00
And I am using the existing project in test/fixtures/stylesheets/compass
When I run: compass frameworks
Then the list of frameworks includes "testing"
@listframeworks
Scenario: Frameworks without templates
Given I am using the existing project in test/fixtures/stylesheets/uses_only_stylesheets_ext
When I run: compass frameworks
Then the list of frameworks includes "only_stylesheets"