Sha256: 1c5fa5c9020a4dc00bf7ea15ad55df5d4ccd720cc8752aaf5d35700f5be27ea4

Contents?: true

Size: 517 Bytes

Versions: 9

Compression:

Stored size: 517 Bytes

Contents

Feature: Rake tasks
  As a source code writer I want to be able to
  run Xcop from Rakefile

  Scenario: Xcop can be used in Rakefile
    Given It is Unix
    And I have a "Rakefile" file with content:
    """
    require 'xcop/rake_task'
    Xcop::RakeTask.new(:xcop) do |task|
      task.includes = ['good.xml']
    end
    """
    And I have a "good.xml" file with content:
    """
    <?xml version="1.0"?>
    <hello>Hello, world!</hello>

    """
    When I run bash with "rake xcop"
    Then Exit code is zero

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
xcop-0.7.1 features/rake.feature
xcop-0.7.0 features/rake.feature
xcop-0.6.3 features/rake.feature
xcop-0.6.2 features/rake.feature
xcop-0.6.1 features/rake.feature
xcop-0.6 features/rake.feature
xcop-0.5.8 features/rake.feature
xcop-0.5.7 features/rake.feature
xcop-0.5.6 features/rake.feature