File: extensions.feature

package info (click to toggle)
ruby-compass 0.12.2~dfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 8,308 kB
  • sloc: ruby: 10,474; makefile: 42; xml: 14
file content (27 lines) | stat: -rw-r--r-- 1,141 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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: Shared extensions directory
    Given the "~/.compass/extensions" directory exists
    And and I have a fake extension at ~/.compass/extensions/testing
    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"