Sha256: 86eec97507afd4fb0777145ed0b33c694fb35f31c67fe7d065c74c4ae8243a05

Contents?: true

Size: 911 Bytes

Versions: 6

Compression:

Stored size: 911 Bytes

Contents

Feature: Indentation

  Scenario: A single file project with every in/outdent expression, indented properly
    Given I have a project directory "1_long_file_with_indentation"
      And I have 1 file in my project
      And that file is indented properly
    When I run the checker on the project
    Then the checker should tell me my indentation is OK

  Scenario: A single file that's indented properly
    Given I have a project directory "1_good_simple_file"
      And I have 1 file in my project
      And the indentation of that file starts at level 0
      And the line 1 is a "class" statement
      And the line 2 is a "def" statement
    When I run the checker on the project
    Then the level of line 1 should be 0.0
      And the level of line 2 should be 1.0
      And the level of line 3 should be 2.0
      And the level of line 4 should be 1.0
      And the level of line 5 should be 0.0
    

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
tailor-0.1.5 features/indentation.feature
tailor-0.1.4 features/indentation.feature
tailor-0.1.3 features/indentation.feature
tailor-0.1.2 features/indentation.feature
tailor-0.1.1 features/indentation.feature
tailor-0.1.0 features/indentation.feature